2024-11-22 07:40:43 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-12-02 17:17:26 +01:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<ImplicitUsings>false</ImplicitUsings>
|
|
|
|
|
<Configurations>Debug</Configurations>
|
|
|
|
|
<RootNamespace>Uwaa.HTTP.Example</RootNamespace>
|
|
|
|
|
<AssemblyName>Uwaa.HTTP.Example</AssemblyName>
|
|
|
|
|
</PropertyGroup>
|
2024-11-22 07:40:43 +01:00
|
|
|
|
|
2024-12-02 17:17:26 +01:00
|
|
|
|
<Import Project="../Common.targets"/>
|
2024-11-22 07:40:43 +01:00
|
|
|
|
|
2024-12-02 17:17:26 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\HTTP\HTTP.csproj" />
|
|
|
|
|
|
|
|
|
|
<None Update="certs\*">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="www-static\**\*">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2024-11-22 07:40:43 +01:00
|
|
|
|
</Project>
|