added Windows UI 3 blank application

This commit is contained in:
2026-08-07 22:31:55 +02:00
parent dbf995ef42
commit 6155cb96f1
20 changed files with 337 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>HarmonyWinUI</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x64;ARM64</Platforms>
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
<UseWinUI>true</UseWinUI>
<WinUISDKReferences>false</WinUISDKReferences>
<!-- Unpackaged aplikácia -->
<WindowsPackageType>None</WindowsPackageType>
<!-- Pribaliť .NET aj Windows App SDK runtime -->
<SelfContained>true</SelfContained>
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
<Nullable>enable</Nullable>
<!-- Release optimalizácie -->
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">false</PublishReadyToRun>
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">true</PublishReadyToRun>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>
<ItemGroup>
<PackageReference
Include="Microsoft.Windows.SDK.BuildTools"
Version="10.0.28000.2526" />
<PackageReference
Include="Microsoft.WindowsAppSDK"
Version="2.3.1" />
</ItemGroup>
</Project>