зеркало из https://github.com/dotnet/razor.git
49 строки
2.0 KiB
XML
49 строки
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
<!--
|
|
We don't follow Arcade conventions for project naming.
|
|
-->
|
|
<PropertyGroup Condition="'$(IsUnitTestProject)' == ''">
|
|
<IsUnitTestProject>false</IsUnitTestProject>
|
|
<IsUnitTestProject Condition="$(MSBuildProjectName.EndsWith('.Test'))">true</IsUnitTestProject>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
|
|
<Import Project="eng\MPack.props" />
|
|
|
|
<Import
|
|
Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))\AspNetCoreSettings.props"
|
|
Condition=" '$(CI)' != 'true' AND '$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))' != '' " />
|
|
|
|
<PropertyGroup Condition="'$(CopyrightMicrosoft)' != ''">
|
|
<Copyright>$(CopyrightMicrosoft)</Copyright>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Build Settings">
|
|
<LangVersion>8.0</LangVersion>
|
|
<StrongNameKeyId>MicrosoftAspNetCore</StrongNameKeyId>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<DebugType>portable</DebugType>
|
|
<PublishWindowsPdb>true</PublishWindowsPdb>
|
|
<GenerateResxSource>true</GenerateResxSource>
|
|
<GenerateResxSourceEmitFormatMethods>true</GenerateResxSourceEmitFormatMethods>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Package and Assembly Metadata">
|
|
<Product>Microsoft ASP.NET Core</Product>
|
|
<PackageIconUrl>https://go.microsoft.com/fwlink/?LinkID=288859</PackageIconUrl>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Warning Suppressions">
|
|
<!--
|
|
Suppress a warning about upcoming deprecation of PackageLicenseUrl. When embedding licenses are supported, replace PackageLicenseUrl with PackageLicenseExpression.
|
|
-->
|
|
<NoWarn>$(NoWarn);NU5125</NoWarn>
|
|
|
|
<!--
|
|
Suppress warnings about assembly conflicts. This happens for assemblies that ship in VS so it's irrelevant.
|
|
-->
|
|
<NoWarn>$(NoWarn);MSB3277</NoWarn>
|
|
</PropertyGroup>
|
|
</Project> |