/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/ExternalAccess/Core/Microsoft.CodeAnalysis.LanguageServer.ExternalAccess.csproj
88 строк
5 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.LanguageServer.ExternalAccess</RootNamespace> <TargetFrameworks>$(NetVSShared);netstandard2.0</TargetFrameworks> <ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild> <IsPackable>true</IsPackable> <PackageId>Microsoft.CodeAnalysis.LanguageServer.ExternalAccess</PackageId> <PackageDescription> A supporting package for Roslyn partners to access internal APIs. </PackageDescription> </PropertyGroup> <ItemGroup> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer.ExternalAccess.Copilot" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.ExternalAccess.TestDiscovery" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.ExternalAccess.VisualDiagnostics" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.ExternalAccess.Xaml" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Remote.ServiceHub" /> <!-- ⚠ ONLY COPILOT ASSEMBLIES MAY BE ADDED HERE ⚠ --> <InternalsVisibleTo Include="Microsoft.VisualStudio.Copilot.Roslyn.LanguageServer" Key="$(CopilotKey)" /> <!-- ⚠ ONLY C# DEV KIT ASSEMBLIES MAY BE ADDED HERE ⚠ --> <InternalsVisibleTo Include="Microsoft.VisualStudio.CSharpDevKit.SourceTestDiscovery" Key="$(VisualStudioKey)" /> <!-- ⚠ ONLY RAZOR ASSEMBLIES MAY BE ADDED HERE ⚠ --> <InternalsVisibleTo Include="Microsoft.AspNetCore.Razor.LanguageServer" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.AspNetCore.Razor.LanguageServer.Test" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.AspNetCore.Razor.Test.Common.Tooling" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.AspNetCore.Razor.Microbenchmarks" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Razor.Workspaces" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Razor.Workspaces.Test" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Remote.Razor" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Remote.Razor.Test" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Editor.Razor" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServerClient.Razor" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServerClient.Razor.Test" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.Razor" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.Razor.Test" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudioCode.RazorExtension" Key="$(RazorKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudioCode.RazorExtension.Test" Key="$(RazorKey)" /> <!-- ⚠ Only designTools assemblies should be added here ⚠ --> <InternalsVisibleTo Include="DesignTools.Tests.Component.CodeAnalysisDiagnostics" Key="$(VisualStudioKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.DesignTools.CodeAnalysis.Diagnostics" Key="$(VisualStudioKey)" /> <!-- ⚠ ONLY XAML ASSEMBLIES MAY BE ADDED HERE ⚠ --> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer.Xaml" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.DesignTools.Xaml" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.DesignTools.CodeAnalysis" Key="$(VisualStudioKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.DesignTools.XamlLanguageService" Key="$(VisualStudioKey)" /> <InternalsVisibleTo Include="DesignTools.Tests.Component.CodeAnalysis" Key="$(VisualStudioKey)" /> </ItemGroup> <ItemGroup> <PackageReference Include="System.ComponentModel.Composition" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\..\..\Features\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.Features.csproj" /> <ProjectReference Include="..\..\..\LanguageServer\Protocol\Microsoft.CodeAnalysis.LanguageServer.Protocol.csproj" /> <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj" /> <ProjectReference Include="..\..\..\Workspaces\Remote\Core\Microsoft.CodeAnalysis.Remote.Workspaces.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>