/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/ExternalAccess/Copilot/Microsoft.CodeAnalysis.ExternalAccess.Copilot.csproj
44 строки
2 KB
Joey Robichaud
Consolidate ExternalAccess libraries (#81593)
07 июл 2026, 23:16
Не верифицирован
07 июл 2026, 23:16
97ee762
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Library</OutputType> <RootNamespace>Microsoft.CodeAnalysis.ExternalAccess.Copilot</RootNamespace> <TargetFrameworks>$(NetVSShared);netstandard2.0</TargetFrameworks> <ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild> <!-- NuGet --> <IsPackable>true</IsPackable> <PackageId>Microsoft.CodeAnalysis.ExternalAccess.Copilot</PackageId> <PackageDescription> A supporting package for GitHub Copilot: https://devdiv.visualstudio.com/DefaultCollection/DevDiv/_git/VisualStudio.Conversations </PackageDescription> </PropertyGroup> <ItemGroup> <!-- ⚠ ONLY COPILOT ASSEMBLIES MAY BE ADDED HERE ⚠ --> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Copilot.CodeMappers.CSharp" Key="$(CopilotKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Copilot.Roslyn" Key="$(CopilotKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Copilot.Roslyn.LanguageServer" Key="$(CopilotKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Copilot.Roslyn.SemanticSearch" Key="$(CopilotKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Copilot.Roslyn.Tests" Key="$(CopilotKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Copilot.Roslyn.SemanticSearch.Tests" Key="$(CopilotKey)" /> <InternalsVisibleTo Include="AITools.CodeAnalysis" Key="$(AIToolsKey)" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Core\Microsoft.CodeAnalysis.Features.ExternalAccess.csproj" /> </ItemGroup> <ItemGroup> <PublicAPI Include="PublicAPI.Shipped.txt" /> <PublicAPI Include="PublicAPI.Unshipped.txt" /> <PublicAPI Include="InternalAPI.Shipped.txt" /> <PublicAPI Include="InternalAPI.Unshipped.txt" /> </ItemGroup> </Project>