43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<AssemblyName>AntAgent</AssemblyName>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AssemblyTitle>蚂蚁代理</AssemblyTitle>
|
|
<Description>调度中心下发C#或Sql给蚂蚁代理执行</Description>
|
|
<Company>新生命开发团队</Company>
|
|
<Copyright>版权所有(C) 新生命开发团队 2025</Copyright>
|
|
<VersionPrefix>4.3</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>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>latest</LangVersion>
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="appsettings.json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
<Content Include="favicon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NewLife.Stardust" Version="3.4.2025.801" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AntJob.Extensions\AntJob.Extensions.csproj" />
|
|
<ProjectReference Include="..\AntJob\AntJob.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|