/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/Core/Rebuild/Microsoft.CodeAnalysis.Rebuild.csproj
32 строки
1 KB
Tomáš Matoušek
Use Microsoft.VisualStudio.Sdk meta-package and clean up versions and package references (#71111)
18 янв 2024, 08:15
Не верифицирован
18 янв 2024, 08:15
db94f71
Код
Авторство
О чём код?
<?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.Rebuild</RootNamespace> <TargetFrameworks>$(NetRoslynSourceBuild);netstandard2.0</TargetFrameworks> <Nullable>enable</Nullable> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <IsShipping>false</IsShipping> </PropertyGroup> <ItemGroup Label="Project References"> <ProjectReference Include="..\Portable\Microsoft.CodeAnalysis.csproj" /> <ProjectReference Include="..\..\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj" /> <ProjectReference Include="..\..\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.vbproj" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.Extensions.Logging" /> <PackageReference Include="System.Reflection.Metadata" /> </ItemGroup> <ItemGroup> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Rebuild.UnitTests" /> </ItemGroup> <ItemGroup> <EmbeddedResource Update="RebuildResources.resx" GenerateSource="true" /> </ItemGroup> </Project>