-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParcelTracking.API.IntegrationTests.csproj
More file actions
27 lines (23 loc) · 1.21 KB
/
Copy pathParcelTracking.API.IntegrationTests.csproj
File metadata and controls
27 lines (23 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" />
<PackageReference Include="DotNet.Testcontainers" Version="1.7.0-beta.2269" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
<PackageReference Include="Moq" Version="4.20.0" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.6.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ParcelTracking.API\ParcelTracking.API.csproj" />
<ProjectReference Include="..\..\ParcelTracking.Application\ParcelTracking.Application.csproj" />
<ProjectReference Include="..\..\ParcelTracking.Infrastructure\ParcelTracking.Infrastructure.csproj" />
<ProjectReference Include="..\..\ParcelTracking.Domain\ParcelTracking.Domain.csproj" />
</ItemGroup>
</Project>