29 lines
855 B
XML
29 lines
855 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HTTP\HTTP.csproj" />
|
|
<ProjectReference Include="..\PNG\PNG.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="System" />
|
|
<Using Include="System.Collections.Generic" />
|
|
<Using Include="System.IO" />
|
|
<Using Include="System.Linq" />
|
|
<Using Include="System.Threading.Tasks" />
|
|
</ItemGroup>
|
|
</Project>
|