Uwaa/HTTP.Example/HTTP.Example.csproj
2024-12-02 16:17:26 +00:00

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>