/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/ExternalAccess/Debugger/Microsoft.CodeAnalysis.ExternalAccess.Debugger.csproj
42 строки
1 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.WindowsDesktop"> <PropertyGroup> <OutputType>Library</OutputType> <RootNamespace>Microsoft.CodeAnalysis.ExternalAccess.Debugger</RootNamespace> <TargetFramework>net472</TargetFramework> <UseWPF>true</UseWPF> <!-- NuGet --> <IsPackable>true</IsPackable> <PackageId>Microsoft.CodeAnalysis.ExternalAccess.Debugger</PackageId> <PackageDescription> A supporting package for the Visual Studio debugger: https://devdiv.visualstudio.com/DevDiv/_git/VS?path=%2Fsrc%2Fdebugger%2FRazor </PackageDescription> </PropertyGroup> <ItemGroup> <!-- ⚠ ONLY VISUAL STUDIO DEBUGGER ASSEMBLIES MAY BE ADDED HERE ⚠ --> <InternalsVisibleTo Include="VsDebugPresentationPackage" Key="$(VisualStudioDebuggerKey)" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.Debugger.BrokeredServices.Glass" Key="$(VisualStudioDebuggerKey)" /> </ItemGroup> <ItemGroup> <PackageReference Include="System.Buffers" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Core\Microsoft.CodeAnalysis.EditorFeatures.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>