You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
10 months ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>enable</Nullable>
|
||
|
|
||
|
<IsPackable>false</IsPackable>
|
||
|
<IsTestProject>true</IsTestProject>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0"/>
|
||
|
<PackageReference Include="xunit" Version="2.4.2"/>
|
||
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
</PackageReference>
|
||
|
<PackageReference Include="coverlet.collector" Version="6.0.0">
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
</PackageReference>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\DS.Module.Core\DS.Module.Core.csproj" />
|
||
|
<ProjectReference Include="..\DS.WMS.Core\DS.WMS.Core.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|