KestrelHttpServer/Directory.Build.props

29 строки
1.2 KiB
Plaintext
Исходник Обычный вид История

2017-01-19 02:17:00 +03:00
<Project>
<Import Project="version.xml" />
2017-01-19 02:17:00 +03:00
<PropertyGroup>
<Product>Microsoft ASP.NET Core</Product>
<RepositoryUrl>https://github.com/aspnet/KestrelHttpServer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
2017-10-16 22:50:44 +03:00
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)build\Key.snk</AssemblyOriginatorKeyFile>
2017-01-19 02:17:00 +03:00
<SignAssembly>true</SignAssembly>
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
<VersionSuffix Condition="'$(VersionSuffix)'!='' AND '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>latest</LangVersion>
2017-01-19 02:17:00 +03:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETCore.Compilers" Version="2.6.0-beta2-62211-02" PrivateAssets="All">
<!--
Suppresses the warning about having an explicit package version in this repo.
We are okay with this for now as the experimental version of the compiler is unique to Kestrel (for now).
2017-01-19 02:17:00 +03:00
See https://github.com/dotnet/csharplang/issues/666 for more details.
-->
<NoWarn>KRB4002</NoWarn>
</PackageReference>
</ItemGroup>
2017-02-15 03:03:53 +03:00
</Project>