This commit is contained in:
Steven Hobs
2026-02-12 23:35:48 +08:00
commit b03db7ac51
15 changed files with 1007 additions and 0 deletions

33
PureWinUI.csproj Normal file
View File

@@ -0,0 +1,33 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows10.0.26100.0</TargetFramework>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<Platforms>x64</Platforms>
<!-- WinUI属性 -->
<UseWinUI>true</UseWinUI>
<WindowsPackageType>None</WindowsPackageType>
<SelfContained>false</SelfContained>
<WindowsAppSDKSelfContained>false</WindowsAppSDKSelfContained>
<!-- 程序定义 -->
<AssemblyName>PureWinUI</AssemblyName>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Assets\Logo\app.ico</ApplicationIcon>
<SatelliteResourceLanguages>zh-CN</SatelliteResourceLanguages>
<!-- 其他 -->
<RootNamespace>MyApp</RootNamespace>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsPackable>false</IsPackable>
<ImplicitUsings>false</ImplicitUsings>
<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.7705" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.8.260209005" />
<PackageReference Include="WinUIEx" Version="2.9.0" />
</ItemGroup>
<ItemGroup>
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>
</Project>