54 lines
1.8 KiB
XML
54 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Version>1.0.0</Version>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
<Authors>Mathias Wagner</Authors>
|
|
<Company>MaxSlurper</Company>
|
|
<Product>MaxSlurper</Product>
|
|
<Description>Weil Max danach gefragt hat</Description>
|
|
<Copyright>Copyright © 2025</Copyright>
|
|
<ApplicationIcon>logo.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<!-- Publishing settings for single-file deployment -->
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugType>embedded</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<TrimMode>none</TrimMode>
|
|
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- ModernWpf removed to revert to standard WPF resources -->
|
|
</ItemGroup>
|
|
|
|
<!-- Include the provided Slurp.wav (located at the solution root) and copy it to output so it can be played at runtime -->
|
|
<ItemGroup>
|
|
<Content Include="..\Slurp.wav">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<!-- Include logo files -->
|
|
<ItemGroup>
|
|
<Resource Include="logo.ico" />
|
|
<Resource Include="logo.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="WPF-UI" Version="3.0.4" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|