Remove unused logo and add WindowsDesktop.App reference

Deleted obsolete PNG asset. Added Microsoft.WindowsDesktop.App as a framework reference in the project file to ensure consistent Microsoft.VisualBasic.dll versioning across WinUI3 apps, without enabling WPF or WinForms. No changes to log file exclusions or App.xaml handling.
This commit is contained in:
Yu Leng
2025-12-09 10:36:54 +08:00
parent 5bf0a610e8
commit dd02ed54e0
2 changed files with 6 additions and 0 deletions

View File

@@ -38,6 +38,12 @@
<None Remove="*.log" /> <None Remove="*.log" />
<None Remove="*.binlog" /> <None Remove="*.binlog" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<!-- Add WindowsDesktop.App framework reference to align Microsoft.VisualBasic.dll version
with other projects that use UseWPF/UseWindowsForms. This does NOT enable WPF/WinForms,
it only ensures consistent runtime DLL versions across all WinUI3Apps. -->
<FrameworkReference Include="Microsoft.WindowsDesktop.App" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<Page Remove="PowerDisplayXAML\App.xaml" /> <Page Remove="PowerDisplayXAML\App.xaml" />
</ItemGroup> </ItemGroup>