This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReQuesty.Demo.IntegrationTests.csproj
More file actions
38 lines (31 loc) · 1.55 KB
/
ReQuesty.Demo.IntegrationTests.csproj
File metadata and controls
38 lines (31 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<Target Name="GenerateApiClient" AfterTargets="BeforeBuild" Condition="$(Configuration) == 'Debug'">
<Message Text="Generating API Client" Importance="High" />
<Exec Command="dotnet run --project ../../ReQuesty/ReQuesty.csproj -- generate --openapi ../ReQuesty.Demo.Api/ReQuesty.Demo.Api_main.json --output ./ApiClient --class-name DemoApiClient --namespace-name ReQuesty.Demo.IntegrationTests.ApiClient --clean-output" />
</Target>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.Testing" Version="13.1.1" />
<PackageReference Include="coverlet.collector" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="ReQuesty.Runtime" Version="0.0.7" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<!-- Useful for debugging, but should not be needed in normally -->
<!--ProjectReference Include="../../../ReQuesty.Runtime/ReQuesty.Runtime/ReQuesty.Runtime.csproj" /-->
<ProjectReference Include="../ReQuesty.Demo.AppHost/ReQuesty.Demo.AppHost.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<Folder Include="PrimativeReturn/" />
</ItemGroup>
</Project>