/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Dependencies/Threading/Microsoft.CodeAnalysis.Threading.Package.csproj
31 строка
2 KB
Tomáš Matoušek
Move RoslynParallel and ProducerConsumer to threading source package (#79474)
19 июл 2025, 21:28
Не верифицирован
19 июл 2025, 21:28
934c2a1
Код
Авторство
О чём код?
<?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> <TargetFrameworks>$(NetRoslyn);netstandard2.0</TargetFrameworks> <GenerateDocumentationFile>false</GenerateDocumentationFile> <DebugType>none</DebugType> <GenerateDependencyFile>false</GenerateDependencyFile> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <!-- NuGet --> <IsPackable>true</IsPackable> <IsSourcePackage>true</IsSourcePackage> <PackageId>Microsoft.CodeAnalysis.Threading</PackageId> <IncludeBuildOutput>false</IncludeBuildOutput> <PackageDescription> Package containing sources of Microsoft .NET Compiler Platform ("Roslyn") threading utilities. </PackageDescription> <!-- Remove once https://github.com/NuGet/Home/issues/8583 is fixed --> <NoWarn>$(NoWarn);NU5128</NoWarn> </PropertyGroup> <ItemGroup> <PackageReference Include="System.Collections.Immutable" /> <PackageReference Include="System.Threading.Channels" /> <PackageReference Include="System.Threading.Tasks.Extensions" /> <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" /> </ItemGroup> <Import Project="..\Collections\Microsoft.CodeAnalysis.Collections.projitems" Label="Shared" /> <Import Project="..\PooledObjects\Microsoft.CodeAnalysis.PooledObjects.projitems" Label="Shared" /> <Import Project="..\Contracts\Microsoft.CodeAnalysis.Contracts.projitems" Label="Shared" /> </Project>