Files
omni-scheduler/OmniScheduler/OmniScheduler.csproj
gamewhale 03d7c9cbd0 fix(release): 移除发布包中的外置图标文件
- 将 app.ico 从发布 Content 改为 WPF Resource,避免 release zip 中出现独立图标文件。
- 保留 ApplicationIcon 的 exe 图标嵌入能力,同时让窗口图标继续从应用资源加载。
- 重新生成 v0.1.0 的 win-x64 framework-dependent 多文件发布包。
2026-05-21 11:33:40 +08:00

18 lines
456 B
XML

<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>
<ApplicationIcon>..\app.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Resource Include="..\app.ico" Link="app.ico" />
</ItemGroup>
</Project>