Files
auto-shutdown/AutoShutdown.csproj
home-PC 0f2a8296c7 chore(release): 调整首版发布版本号
将应用版本、程序集版本和文件版本统一调整为 0.1.0,确保发布产物的文件属性与首个 Release 版本一致。

Release: v0.1.0
2026-05-19 00:05:40 +08:00

30 lines
984 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>app.ico</ApplicationIcon>
<AssemblyName>AutoShutdown</AssemblyName>
<RootNamespace>AutoShutdown</RootNamespace>
<Version>0.1.0</Version>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<Resource Include="app.ico" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
</Project>