29 lines
764 B
XML
29 lines
764 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>enable</Nullable>
|
||
|
|
||
|
<IsPackable>false</IsPackable>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
||
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
|
||
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
|
||
|
<PackageReference Include="RabbitMQ.Client" Version="6.8.1" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Folder Include="Nuget\" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<None Update="Falcon.SugarApi.2.2.0.nupkg">
|
||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
</None>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|