/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Tools/Benchmarks/Benchmarks.csproj
32 строки
2 KB
Jared Parsons
Optimize DecisionDagBuilder with Tests.ValueSet for large or-patterns (#83513)
21 июл 2026, 21:51
Не верифицирован
21 июл 2026, 21:51
37b7c06
Код
Авторство
О чём код?
<?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>Exe</OutputType> <TargetFramework>$(NetRoslyn)</TargetFramework> <IsShipping>false</IsShipping> <ProduceReferenceAssembly>False</ProduceReferenceAssembly> <NoWarn>$(NoWarn);NETSDK1206</NoWarn> <!-- This project is not a test project in context of how this repo views test projects. Marking it as such will change TFMs, bring in additional targets, and generally fail to build. However, it is a 'test' type project and depends on other test utility projects that may be built in every build invocation. For instance, when building officially in the VMR, test and test utility projects are excluded. So, when test projects are excluded, exclude this benchmark project. See https://github.com/dotnet/arcade/blob/main/Documentation/UnifiedBuild/Unified-Build-Controls.md for information on controls. --> <ExcludeFromDotNetBuild Condition="'$(DotNetBuildTests)' != 'true'">true</ExcludeFromDotNetBuild> <ExcludeFromBuild Condition="'$(DotNetBuildTests)' == 'false'">true</ExcludeFromBuild> </PropertyGroup> <ItemGroup> <PackageReference Include="BenchmarkDotNet" /> <PackageReference Include="Basic.Reference.Assemblies.Net90" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" /> <ProjectReference Include="..\..\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj" /> </ItemGroup> </Project>