28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net11.0</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<IsPackable>false</IsPackable>
|
||
|
|
<RootNamespace>w4c_workflows.Tests</RootNamespace>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
|
||
|
|
<PackageReference Include="xunit" Version="2.9.2" />
|
||
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
|
||
|
|
<!-- Unify EF Core with w4c-workflows-api (10.0.10) so the referenced
|
||
|
|
workflows-api.dll is not shadowed by the older transitive 10.0.4 the
|
||
|
|
Npgsql provider package pulls in. -->
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.10" />
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.10" />
|
||
|
|
<PackageReference Include="Testcontainers.PostgreSql" Version="4.9.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="../w4c-workflows-api.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|