1
|
<Project Sdk="Microsoft.NET.Sdk">
|
2
|
|
3
|
<PropertyGroup>
|
4
|
<TargetFramework>net5.0</TargetFramework>
|
5
|
|
6
|
<IsPackable>false</IsPackable>
|
7
|
<DefineConstants>TEST</DefineConstants>
|
8
|
<Configurations>Debug;Release;Test</Configurations>
|
9
|
</PropertyGroup>
|
10
|
|
11
|
<ItemGroup>
|
12
|
<PackageReference Include="FluentAssertions" Version="5.10.3" />
|
13
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
|
14
|
<PackageReference Include="Moq" Version="4.16.1" />
|
15
|
<PackageReference Include="xunit" Version="2.4.1" />
|
16
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
17
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
18
|
<PrivateAssets>all</PrivateAssets>
|
19
|
</PackageReference>
|
20
|
<PackageReference Include="coverlet.collector" Version="3.0.3">
|
21
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
22
|
<PrivateAssets>all</PrivateAssets>
|
23
|
</PackageReference>
|
24
|
</ItemGroup>
|
25
|
|
26
|
<ItemGroup>
|
27
|
<ProjectReference Include="..\..\..\src\Modules\Goal\Application\Leuze.Modules.Goal.Application\Leuze.Modules.Goal.Application.csproj" />
|
28
|
<ProjectReference Include="..\..\..\src\Modules\Goal\Infrastructure\Leuze.Modules.Goal.Infrastructure.Persistence\Leuze.Modules.Goal.Infrastructure.Persistence.csproj" />
|
29
|
<ProjectReference Include="..\..\Leuze.Tests.Configuration\Leuze.Tests.Configuration.csproj" />
|
30
|
</ItemGroup>
|
31
|
|
32
|
</Project>
|