24 lines
937 B
XML
24 lines
937 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net40;net45;net5.0;net6.0;net7.0</TargetFrameworks>
|
|
<AssemblyTitle>安装器</AssemblyTitle>
|
|
<Description>安装辅助工具</Description>
|
|
<Company>新生命开发团队</Company>
|
|
<Copyright>©2002-2023 NewLife</Copyright>
|
|
<VersionPrefix>1.0</VersionPrefix>
|
|
<VersionSuffix>$([System.DateTime]::Now.ToString(`yyyy.MMdd`))</VersionSuffix>
|
|
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
|
|
<FileVersion>$(Version)</FileVersion>
|
|
<AssemblyVersion>$(VersionPrefix).*</AssemblyVersion>
|
|
<Deterministic>false</Deterministic>
|
|
<OutputPath>..\Bin\Agent</OutputPath>
|
|
<!--<ImplicitUsings>enable</ImplicitUsings>-->
|
|
<LangVersion>latest</LangVersion>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|