19 lines
651 B
XML
19 lines
651 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>ASP.NET Core web server for writing and running tests.</Description>
|
|
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore;hosting;testing</PackageTags>
|
|
<IsPackable>true</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Hosting" />
|
|
<Reference Include="Microsoft.Extensions.HostFactoryResolver.Sources" />
|
|
<Reference Include="System.IO.Pipelines" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|