2017-01-19 02:17:00 +03:00
|
|
|
<Project>
|
2017-08-16 23:03:34 +03:00
|
|
|
<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>
|
2017-08-16 23:03:34 +03:00
|
|
|
<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>
|
2017-07-06 22:17:43 +03:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2017-08-16 23:03:34 +03:00
|
|
|
<LangVersion>latest</LangVersion>
|
2017-01-19 02:17:00 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-10-24 02:18:15 +03:00
|
|
|
<PackageReference Include="Microsoft.NETCore.Compilers" Version="2.6.0-beta2-62211-02" PrivateAssets="All">
|
2017-08-16 23:03:34 +03:00
|
|
|
<!--
|
|
|
|
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
|
|
|
|
2017-08-16 23:03:34 +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>
|