-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMicrocks.Testcontainers.Tests.csproj
More file actions
47 lines (47 loc) · 2.06 KB
/
Copy pathMicrocks.Testcontainers.Tests.csproj
File metadata and controls
47 lines (47 loc) · 2.06 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
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageReference Include="coverlet.collector" Version="10.0.1" />
<PackageReference Include="RabbitMQ.Client" Version="7.2.1" />
<PackageReference Include="RestAssured.Net" Version="5.0.0" />
<PackageReference Include="Confluent.Kafka" Version="2.14.2" />
<PackageReference Include="TestContainers.Kafka" Version="4.11.0" />
<PackageReference Include="TestContainers.Keycloak" Version="4.11.0" />
<PackageReference Include="Testcontainers.RabbitMq" Version="4.11.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="xunit.v3" Version="3.2.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Microcks.Testcontainers\Microcks.Testcontainers.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="apipastries-openapi.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="pastry-orders-asyncapi.yml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="apipastries-postman-collection.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="microcks-repository.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="myrealm-realm.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="subdir\weather-forecast-openapi.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>