publish && assets reset; Remove:slnx

This commit is contained in:
Steven Hobs
2026-02-13 10:32:28 +08:00
parent 5904b03264
commit 8811ba92a7
11 changed files with 16 additions and 19 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 991 B

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -6,7 +6,7 @@ public sealed partial class MainWindow : WindowEx
public MainWindow()
{
InitializeComponent();
this.SetIcon("Assets/Logo/app_64.ico");
this.SetIcon("Assets/Logo/app.ico");
ExtendsContentIntoTitleBar = true;
SetTitleBar(AppTitleBar);
}

View File

@@ -1,8 +0,0 @@
<Solution>
<Configurations>
<Platform Name="x64" />
</Configurations>
<Project Path="PureWinUI.csproj">
<Platform Project="x64" />
</Project>
</Solution>

View File

@@ -4,27 +4,32 @@
<TargetFramework>net10.0-windows10.0.26100.0</TargetFramework>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<Platforms>x64</Platforms>
<RootNamespace>MyApp</RootNamespace>
<!-- 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>
<SatelliteResourceLanguages>zh,en</SatelliteResourceLanguages>
<!-- 其他 -->
<RootNamespace>MyApp</RootNamespace>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<IsPackable>false</IsPackable>
<ImplicitUsings>false</ImplicitUsings>
<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild>
<EnableMsixTooling>true</EnableMsixTooling>
</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" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="*" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="*" />
<PackageReference Include="WinUIEx" Version="*" />
</ItemGroup>
<ItemGroup>
<Folder Include="Pages\" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\**\*.*" CopyToOutputDirectory="PreserveNewest"/>
</ItemGroup>
</Project>