21 lines
739 B
XML
21 lines
739 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
|
<Reference Include="Microsoft.Extensions.Hosting" />
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Quic" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="msquic.dll" Condition="Exists('msquic.dll')">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|