/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/NuGet/Microsoft.CodeAnalysis.Compilers.Package/Microsoft.CodeAnalysis.Compilers.Package.csproj
22 строки
1 KB
Matt Mitchell
ExcludeFromSourceBuild->ExcludeFromSourceOnlyBuild (#75136)
17 сен 2024, 18:12
Не верифицирован
17 сен 2024, 18:12
c4203b8
Код
Авторство
О чём код?
<!-- 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> <!-- NuGet --> <IsPackable>true</IsPackable> <ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild> <PackageId>Microsoft.CodeAnalysis.Compilers</PackageId> <IncludeBuildOutput>false</IncludeBuildOutput> <PackageDescription> Compiler layer of the .NET Compiler Platform ("Roslyn"). Install this package to get both C# and Visual Basic support. If you want just support for one language, install Microsoft.CodeAnalysis.CSharp or Microsoft.CodeAnalysis.VisualBasic. </PackageDescription> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\..\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj" /> <ProjectReference Include="..\..\Compilers\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.vbproj" /> </ItemGroup> </Project>