/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/ExternalAccess/Core/Microsoft.CodeAnalysis.Features.ExternalAccess.csproj
59 строк
3 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.Features.ExternalAccess</RootNamespace> <TargetFrameworks>$(NetVSShared);netstandard2.0</TargetFrameworks> <ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild> <!-- NuGet --> <IsPackable>true</IsPackable> <PackageId>Microsoft.CodeAnalysis.Features.ExternalAccess</PackageId> <PackageDescription> A supporting package for Roslyn partners to access internal APIs. </PackageDescription> <!-- Referenced by dotnet/aspnetcore and included in SDK. Required for source build/vertical build. --> <ExcludeFromSourceOnlyBuild>false</ExcludeFromSourceOnlyBuild> </PropertyGroup> <ItemGroup> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.ExternalAccess.AspNetCore" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.ExternalAccess.Copilot" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Remote.ServiceHub" /> <!-- ⚠ ONLY ASP.NET CORE ASSEMBLIES MAY BE ADDED HERE ⚠ --> <!-- TODO: Remove Microsoft.AspNetCore.App.Analyzers once types referencing this assembly complete their move to the CodeFixes assembly --> <InternalsVisibleTo Include="Microsoft.AspNetCore.App.Analyzers" Key="$(AspNetCoreKey)" /> <InternalsVisibleTo Include="Microsoft.AspNetCore.App.CodeFixes" Key="$(AspNetCoreKey)" /> <InternalsVisibleTo Include="Microsoft.AspNetCore.App.Analyzers.Test" Key="$(AspNetCoreKey)" /> <!-- ⚠ ONLY COPILOT ASSEMBLIES MAY BE ADDED HERE ⚠ --> <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="..\..\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.Features.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>