-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCommon.Tests.csproj
More file actions
24 lines (21 loc) · 886 Bytes
/
Common.Tests.csproj
File metadata and controls
24 lines (21 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Shared.props" />
<ItemGroup>
<PackageReference Include="Testcontainers" Version="4.3.0" />
<PackageReference Include="Testcontainers.PostgreSql" Version="4.3.0" />
<PackageReference Include="Testcontainers.Redis" Version="4.3.0" />
<PackageReference Include="Bogus" Version="35.6.2" />
<PackageReference Include="TUnit" Version="0.18.33" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Validation\DataSets\BlackList.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Validation\DataSets\WhiteList.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>