refactor: 调度服务端改为控制台架构,借助现有H ost架构和分布式缓存架构
大石头
authored at
2023-06-10 10:59:44
AntJob
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<AssemblyName>AntWeb</AssemblyName>
<TargetFramework>net10.0</TargetFramework>
<TargetFrameworks Condition="'$(PackageTargetFrameworks)' != ''">$(PackageTargetFrameworks)</TargetFrameworks>
<AssemblyTitle>蚂蚁调度管理</AssemblyTitle>
<Description>AntJob 可视化管理平台,提供任务调度、监控、日志查询和集群管理功能。</Description>
<Company>新生命开发团队</Company>
<Copyright>版权所有(C) 新生命开发团队 2026</Copyright>
<VersionPrefix>4.4</VersionPrefix>
<VersionSuffix>$([System.DateTime]::Now.ToString(`yyyy.MMdd`))</VersionSuffix>
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(VersionPrefix).*</AssemblyVersion>
<Deterministic>false</Deterministic>
<OutputPath>..\Bin\Web</OutputPath>
<AppendTargetFrameworkToOutputPath Condition="'$(PackageTargetFrameworks)' == ''">false</AppendTargetFrameworkToOutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<IsPackable>true</IsPackable>
<ApplicationIcon>favicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\AntJob.Server\Services\AppService.cs" Link="Services\AppService.cs" />
<Compile Include="..\AntJob.Server\Services\JobService.cs" Link="Services\JobService.cs" />
<Compile Include="..\AntJob.Server\Setting.cs" Link="Setting.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NewLife.Cube.Core" Version="6.9.2026.303" />
<PackageReference Include="NewLife.MySql" Version="1.0.2026.302" />
<PackageReference Include="NewLife.Remoting.Extensions" Version="3.7.2026.302" />
<PackageReference Include="NewLife.Stardust.Extensions" Version="3.7.2026.307" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AntJob.Data\AntJob.Data.csproj" />
<ProjectReference Include="..\AntJob\AntJob.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Services\" />
</ItemGroup>
</Project>
|