Projektdateien hinzufügen.

This commit is contained in:
2025-10-23 18:57:34 +02:00
parent 0ded3af381
commit fa4c2b14d3
28 changed files with 2580 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
<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>