22 lines
628 B
XML
22 lines
628 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<ImplicitUsings>false</ImplicitUsings>
|
|
<Configurations>Debug</Configurations>
|
|
<RootNamespace>Uwaa.HTTP.Example</RootNamespace>
|
|
<AssemblyName>Uwaa.HTTP.Example</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="../Common.targets"/>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HTTP\HTTP.csproj" />
|
|
|
|
<None Update="certs\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="www-static\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|