/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Workspaces/SharedUtilitiesAndExtensions/Compiler/Extensions/Microsoft.CodeAnalysis.Extensions.Package.csproj
34 строки
2 KB
Tomáš Matoušek
Add Microsoft.CodeAnalysis.Extensions package (#78388)
14 май 2025, 19:34
Не верифицирован
14 май 2025, 19:34
f4e6964
Код
Авторство
О чём код?
<?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> <TargetFramework>netstandard2.0</TargetFramework> <GenerateDocumentationFile>false</GenerateDocumentationFile> <DebugType>none</DebugType> <GenerateDependencyFile>false</GenerateDependencyFile> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <!-- NuGet --> <IsPackable>true</IsPackable> <IsSourcePackage>true</IsSourcePackage> <PackageId>Microsoft.CodeAnalysis.Extensions</PackageId> <IncludeBuildOutput>false</IncludeBuildOutput> <PackageDescription> Package containing sources of Microsoft .NET Compiler Platform ("Roslyn") extensions. </PackageDescription> <!-- Remove once https://github.com/NuGet/Home/issues/8583 is fixed --> <NoWarn>$(NoWarn);NU5128</NoWarn> </PropertyGroup> <Import Project="..\..\..\..\Dependencies\Collections\Microsoft.CodeAnalysis.Collections.projitems" Label="Shared" /> <Import Project="..\..\..\..\Dependencies\PooledObjects\Microsoft.CodeAnalysis.PooledObjects.projitems" Label="Shared" /> <Import Project="..\..\..\..\Dependencies\Contracts\Microsoft.CodeAnalysis.Contracts.projitems" Label="Shared" /> <ItemGroup> <Compile Include="..\..\..\..\Compilers\Core\Portable\InternalUtilities\Hash.cs" Link="Hash.cs" /> <Compile Include="..\..\..\..\Compilers\Core\Portable\InternalUtilities\RoslynString.cs" Link="RoslynString.cs" /> <Compile Include="..\..\..\..\Compilers\Core\Portable\InternalUtilities\StringExtensions.cs" Link="StringExtensions.cs" /> <Compile Include="..\..\..\..\Compilers\Core\Portable\SpecialTypeExtensions.cs" Link="Symbols\SpecialTypeExtensions.cs" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\..\..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" /> </ItemGroup> </Project>