2026-08-18 08:05:19 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2026-02-06 19:58:01 +01:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-08-18 08:05:19 +02:00
|
|
|
<PackageReference Include="coverlet.collector" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
|
<PackageReference Include="NSubstitute" />
|
|
|
|
|
<PackageReference Include="Testcontainers" />
|
|
|
|
|
<PackageReference Include="Testcontainers.PostgreSql" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" />
|
|
|
|
|
<PackageReference Include="xunit.v3" />
|
2026-02-06 19:58:01 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-08-18 08:05:19 +02:00
|
|
|
<Using Include="Xunit" />
|
|
|
|
|
<Using Include="NSubstitute" />
|
2026-02-06 19:58:01 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-02-15 19:06:09 +01:00
|
|
|
<ProjectReference Include="..\IdentityShroud.Api\IdentityShroud.Api.csproj" />
|
2026-02-06 19:58:01 +01:00
|
|
|
<ProjectReference Include="..\IdentityShroud.Core\IdentityShroud.Core.csproj" />
|
2026-02-14 14:50:06 +01:00
|
|
|
<ProjectReference Include="..\IdentityShroud.TestUtils\IdentityShroud.TestUtils.csproj" />
|
2026-02-06 19:58:01 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|