23 lines
467 B
XML
23 lines
467 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="icon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="icon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ExeLauncher\ExeLauncher.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|