35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWPF>true</UseWPF>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<RootNamespace>launcher_client_win</RootNamespace>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<DebugType>full</DebugType>
|
|
<ApplicationIcon>Resources\logo-D.ico</ApplicationIcon>
|
|
<TargetCulture Label="Invariant" />
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ApplicationDefinition Include="GUI\App.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<XamlRuntime>Wpf</XamlRuntime>
|
|
</ApplicationDefinition>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="..\..\DTLib\bin\Release\net6.0\DTLib.dll" />
|
|
<Reference Include="..\..\DTLib\bin\Release\net6.0\DTLib.Dtsod.dll" />
|
|
<Reference Include="..\..\DTLib\bin\Release\net6.0\DTLib.Network.dll" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|