2022-05-20 15:24:59 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2026-01-13 04:02:56 -05:00
|
|
|
|
<!-- These opt outs should be removed when all warnings are addressed -->
|
|
|
|
|
|
<WarningsNotAsErrors>$(WarningsNotAsErrors);CA1305</WarningsNotAsErrors>
|
2022-05-20 15:24:59 -04:00
|
|
|
|
</PropertyGroup>
|
2026-01-10 09:02:50 -05:00
|
|
|
|
|
2022-05-20 15:24:59 -04:00
|
|
|
|
<ItemGroup>
|
2026-01-28 15:02:56 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.2" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.2" />
|
2022-05-20 15:24:59 -04:00
|
|
|
|
</ItemGroup>
|
2026-01-10 09:02:50 -05:00
|
|
|
|
|
2022-05-20 15:24:59 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\src\Identity\Identity.csproj" />
|
2025-06-02 11:06:16 +02:00
|
|
|
|
<ProjectReference Include="..\..\util\Migrator\Migrator.csproj" />
|
2022-05-20 15:24:59 -04:00
|
|
|
|
<ProjectReference Include="..\Common\Common.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|