AntJob/AntJob.Web/AntJob.Web.csproj

62 lines
2.7 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<AssemblyName>AntWeb</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<AssemblyTitle>蚂蚁调度控制台</AssemblyTitle>
<Description>分布式任务调度系统纯NET打造的重量级大数据实时计算平台万亿级调度经验积累</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\Web</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<IsPackable>true</IsPackable>
<ApplicationIcon>favicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Areas\Ant\Views\AppConfig\**" />
<Content Remove="Areas\Ant\Views\AppConfig\**" />
<EmbeddedResource Remove="Areas\Ant\Views\AppConfig\**" />
<None Remove="Areas\Ant\Views\AppConfig\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Areas\Ant\Controllers\AppConfigController.cs" />
<Compile Remove="Common\ApiFilterAttribute.cs" />
</ItemGroup>
<ItemGroup>
<Content Remove="Areas\Ant\Views\AppHistory\_List_Data.cshtml" />
<Content Remove="Areas\Ant\Views\App\_List_Data.cshtml" />
<Content Remove="Areas\Ant\Views\JobTask\_List_Data.cshtml" />
<Content Remove="Areas\Ant\Views\Job\_List_Data.cshtml" />
</ItemGroup>
<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.5.2025.801" />
<PackageReference Include="NewLife.Remoting.Extensions" Version="3.4.2025.801" />
<PackageReference Include="NewLife.Stardust.Extensions" Version="3.4.2025.801" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AntJob.Data\AntJob.Data.csproj" />
<ProjectReference Include="..\AntJob\AntJob.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Common\" />
<Folder Include="Services\" />
</ItemGroup>
<ItemGroup>
<None Include="Areas\Ant\Views\Shared\_App_Nav.cshtml" />
</ItemGroup>
</Project>