18 lines
620 B
XML
18 lines
620 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Lskj.AgentPet.Host.Core\Lskj.AgentPet.Host.Core.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\Contracts\erp-agent-wire-contract-v1.json"
|
|
Link="Contracts\erp-agent-wire-contract-v1.json"
|
|
CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
</Project>
|