2022-08-29 16:24:52 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" />
|
|
|
|
<PackageReference Include="xunit" Version="$(XUnitVersion)" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="$(XUnitRunnerVisualStudioVersion)">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\src\Api\Api.csproj" />
|
|
|
|
<ProjectReference Include="..\IntegrationTestCommon\IntegrationTestCommon.csproj" />
|
|
|
|
|
|
|
|
<Content Include="..\..\src\Api\appsettings.*.json">
|
|
|
|
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
2023-06-08 19:21:03 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<Content Update="Properties\launchSettings.json">
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
2022-08-29 16:24:52 +02:00
|
|
|
</Project>
|