22 lines
975 B
XML
22 lines
975 B
XML
<Project>
|
|
<Import Project="version.props" />
|
|
<Import Project="build\dependencies.props" />
|
|
|
|
<PropertyGroup>
|
|
<Product>Microsoft ASP.NET Core</Product>
|
|
<RepositoryUrl>https://github.com/aspnet/KestrelHttpServer</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)build\Key.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>true</SignAssembly>
|
|
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- This is an experimental version of the compiler. See https://github.com/dotnet/csharplang/issues/666 for more details. -->
|
|
<PackageReference Include="Microsoft.NETCore.Compilers" Version="$(MicrosoftNETCoreCompilersPackageVersion)" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
</Project>
|