27 lines
953 B
XML
27 lines
953 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<RootNamespace>Launcher.Client</RootNamespace>
|
|
<DebugType>full</DebugType>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Resources\**\*" />
|
|
<EmbeddedResource Include="Resources\**\*" />
|
|
<Compile Remove="debug_assets\**\*" />
|
|
<None Update="debug_assets\**\*" CopyToOutputDirectory="Always" Condition="'$(Configuration)' == 'Debug'" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DTLib.Dtsod" Version="1.3.0" />
|
|
<PackageReference Include="DTLib.Logging" Version="1.3.0" />
|
|
<PackageReference Include="DTLib.Network" Version="1.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|