23 lines
684 B
XML
23 lines
684 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AssemblyVersion>1.0.*</AssemblyVersion>
|
|
<Deterministic>false</Deterministic>
|
|
<OutputPath>..\..\Bin\HisAgent</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="JobHost.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\AntJob.Extensions\AntJob.Extensions.csproj" />
|
|
<ProjectReference Include="..\..\AntJob\AntJob.csproj" />
|
|
<ProjectReference Include="..\HisData\HisData.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|