/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol.TestUtilities/Microsoft.CodeAnalysis.LanguageServer.Protocol.Test.Utilities.csproj
27 строк
2 KB
David Barbet
Add LSP daemon project-loading benchmarks (#84667)
29 июл 2026, 21:50
Не верифицирован
29 июл 2026, 21:50
fa85091
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Library</OutputType> <RootNamespace>Microsoft.CodeAnalysis.LanguageServer.Protocol.Test.Utilities</RootNamespace> <TargetFrameworks>$(NetRoslynAll);net472</TargetFrameworks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <IsShipping>false</IsShipping> <IsTestUtilityProject>true</IsTestUtilityProject> <ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\..\Features\TestUtilities\Microsoft.CodeAnalysis.Features.Test.Utilities.csproj" /> <ProjectReference Include="..\Protocol\Microsoft.CodeAnalysis.LanguageServer.Protocol.csproj" /> </ItemGroup> <ItemGroup> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests"/> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer.UnitTests"/> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.LanguageServer.ProcessHost.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures.UnitTests" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.LiveShare.UnitTests" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests" /> <InternalsVisibleTo Include="IdeBenchmarks" /> <InternalsVisibleTo Include="IdeCoreBenchmarks" /> </ItemGroup> </Project>