2022-05-20 21:24:59 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-06-08 19:21:03 +02:00
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Identity.IntegrationTest' " />
|
2022-05-20 21:24:59 +02:00
|
|
|
<ItemGroup>
|
2022-06-24 16:39:34 +02:00
|
|
|
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)">
|
2022-05-20 21:24:59 +02:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2024-09-30 17:14:17 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.8" />
|
2022-06-24 16:39:34 +02:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" />
|
2023-05-17 12:14:36 +02:00
|
|
|
<PackageReference Include="NSubstitute" Version="$(NSubstituteVersion)" />
|
2022-06-24 16:39:34 +02:00
|
|
|
<PackageReference Include="xunit" Version="$(XUnitVersion)" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="$(XUnitRunnerVisualStudioVersion)">
|
2022-05-20 21:24:59 +02:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2022-06-24 16:39:34 +02:00
|
|
|
<PackageReference Include="AutoFixture.Xunit2" Version="$(AutoFixtureXUnit2Version)" />
|
2022-05-20 21:24:59 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\src\Identity\Identity.csproj" />
|
|
|
|
<ProjectReference Include="..\Common\Common.csproj" />
|
|
|
|
<ProjectReference Include="..\IntegrationTestCommon\IntegrationTestCommon.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|