28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<Project>
|
|
<Import Project="version.xml" />
|
|
|
|
<PropertyGroup>
|
|
<Product>Microsoft ASP.NET Core</Product>
|
|
<RepositoryUrl>https://github.com/aspnet/KestrelHttpServer</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)build\Key.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>true</SignAssembly>
|
|
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
|
|
<VersionSuffix Condition="'$(VersionSuffix)'!='' AND '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETCore.Compilers" Version="2.6.0-beta1-62126-01" 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).
|
|
|
|
See https://github.com/dotnet/csharplang/issues/666 for more details.
|
|
-->
|
|
<NoWarn>KRB4002</NoWarn>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
</Project>
|