wow-game-launcher/MultiWoWLauncher.csproj
2025-05-15 19:29:39 -05:00

28 lines
715 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<ApplicationIcon>world-of-warcraft.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\bg.mp4" />
</ItemGroup>
<ItemGroup>
<Content Include="world-of-warcraft.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Assets\bg.mp4" />
</ItemGroup>
</Project>