http-api/tst/Application.IntegrationTests/Application.IntegrationTests.csproj
cuqmbr ea3f705695
All checks were successful
/ build (push) Successful in 4m22s
/ tests (push) Successful in 32s
/ build-docker (push) Successful in 4m28s
add ci/cd actions workflow
2025-04-30 00:36:57 +03:00

44 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
<RootNamespace>Application.IntegrationTests</RootNamespace>
<TargetFramework>net9.0</TargetFramework>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Configuration\Configuration.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
<PackageReference Include="Moq" Version="4.20.72" />
<!-- <PackageReference Include="Reqnroll.xUnit" Version="2.4.0" /> -->
<PackageReference Include="xunit.v3" Version="2.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2" />
<!-- <PackageReference Include="xunit.v3.assert" Version="2.0.1" /> -->
</ItemGroup>
<ItemGroup>
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
<PropertyGroup>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
</PropertyGroup>
</Project>