1 |
fad0afca
|
Dominik Chlouba
|
<Project Sdk="Microsoft.NET.Sdk">
|
2 |
|
|
|
3 |
|
|
<PropertyGroup>
|
4 |
|
|
<AssemblyName>Leuze.Tests.Configuration</AssemblyName>
|
5 |
|
|
<RootNamespace>Leuze.Tests.Configuration</RootNamespace>
|
6 |
|
|
<Product></Product>
|
7 |
|
|
<Description></Description>
|
8 |
d402013e
|
Tomáš Orlovský
|
<Configurations>Debug;Release;Test</Configurations>
|
9 |
fad0afca
|
Dominik Chlouba
|
</PropertyGroup>
|
10 |
|
|
|
11 |
|
|
<PropertyGroup>
|
12 |
|
|
<TargetFramework>net5.0</TargetFramework>
|
13 |
|
|
<Nullable>enable</Nullable>
|
14 |
|
|
<IsPackable>false</IsPackable>
|
15 |
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
16 |
|
|
</PropertyGroup>
|
17 |
|
|
|
18 |
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
19 |
|
|
<DocumentationFile>..\..\docs\Leuze.Tests.Configuration.xml</DocumentationFile>
|
20 |
|
|
</PropertyGroup>
|
21 |
d402013e
|
Tomáš Orlovský
|
|
22 |
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Test|AnyCPU'">
|
23 |
|
|
<DocumentationFile>..\..\docs\Leuze.Tests.Configuration.xml</DocumentationFile>
|
24 |
|
|
</PropertyGroup>
|
25 |
fad0afca
|
Dominik Chlouba
|
|
26 |
|
|
<ItemGroup>
|
27 |
|
|
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
28 |
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
|
29 |
|
|
<PackageReference Include="ExtCore.Data.Abstractions" Version="6.0.0" />
|
30 |
|
|
<PackageReference Include="ExtCore.Data.EntityFramework" Version="6.0.0" />
|
31 |
|
|
<PackageReference Include="ExtCore.Infrastructure" Version="6.0.0" />
|
32 |
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.4" />
|
33 |
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="5.0.4" />
|
34 |
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
|
35 |
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
|
36 |
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
37 |
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
38 |
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
39 |
|
|
<PrivateAssets>all</PrivateAssets>
|
40 |
|
|
</PackageReference>
|
41 |
|
|
<PackageReference Include="coverlet.collector" Version="3.0.3">
|
42 |
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
43 |
|
|
<PrivateAssets>all</PrivateAssets>
|
44 |
|
|
</PackageReference>
|
45 |
|
|
</ItemGroup>
|
46 |
|
|
|
47 |
|
|
<ItemGroup>
|
48 |
|
|
<ProjectReference Include="..\..\src\Core\Application\Leuze.Core.Application.Identity\Leuze.Core.Application.Identity.csproj" />
|
49 |
|
|
<ProjectReference Include="..\..\src\Core\Domain\Leuze.Core.Domain\Leuze.Core.Domain.csproj" />
|
50 |
|
|
<ProjectReference Include="..\..\src\Core\Infrastructure\Leuze.Core.Infrastructure.Persistence\Leuze.Core.Infrastructure.Persistence.csproj" />
|
51 |
|
|
</ItemGroup>
|
52 |
|
|
|
53 |
|
|
</Project>
|