-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetEvolve.Pulse.Tests.Integration.csproj
More file actions
97 lines (90 loc) · 5.35 KB
/
Copy pathNetEvolve.Pulse.Tests.Integration.csproj
File metadata and controls
97 lines (90 loc) · 5.35 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>$(_TestTargetFrameworks)</TargetFrameworks>
<NoWarn>$(NoWarn);CA1812;CA1859;</NoWarn>
<!-- Suppress the Newtonsoft.Json explicit-reference check; this package uses System.Text.Json via CosmosSystemTextJsonSerializer. -->
<AzureCosmosDisableNewtonsoftJsonCheck>true</AzureCosmosDisableNewtonsoftJsonCheck>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Confluent.Kafka" />
<PackageReference Include="FluentValidation" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
<PackageReference Include="Microsoft.Azure.Cosmos" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="Microsoft.Data.Sqlite" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" />
<PackageReference Include="MongoDB.Driver" />
<PackageReference Include="MySql.EntityFrameworkCore" />
<PackageReference Include="NetEvolve.Extensions.TUnit" />
<PackageReference Include="NetEvolve.Http.Correlation.AspNetCore" />
<PackageReference Include="NetEvolve.Http.Correlation.TestGenerator" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Npgsql" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
<PackageReference Include="Polly.Core" />
<PackageReference Include="RabbitMQ.Client" />
<PackageReference Include="Testcontainers" />
<PackageReference Include="Testcontainers.CosmosDb" />
<PackageReference Include="Testcontainers.Kafka" />
<PackageReference Include="Testcontainers.MongoDb" />
<PackageReference Include="Testcontainers.MsSql" />
<PackageReference Include="Testcontainers.MySql" />
<PackageReference Include="Testcontainers.PostgreSql" />
<PackageReference Include="Testcontainers.RabbitMq" />
<PackageReference Include="Testcontainers.Redis" />
<PackageReference Include="TUnit" />
<PackageReference Include="TUnit.AspNetCore" />
<PackageReference Include="Verify.ParametersHashing" />
<PackageReference Include="Verify.TUnit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\NetEvolve.Pulse\NetEvolve.Pulse.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.CosmosDb\NetEvolve.Pulse.CosmosDb.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.AspNetCore\NetEvolve.Pulse.AspNetCore.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.AzureServiceBus\NetEvolve.Pulse.AzureServiceBus.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.EntityFramework\NetEvolve.Pulse.EntityFramework.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.Extensibility\NetEvolve.Pulse.Extensibility.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.FluentValidation\NetEvolve.Pulse.FluentValidation.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.HttpCorrelation\NetEvolve.Pulse.HttpCorrelation.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.Kafka\NetEvolve.Pulse.Kafka.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.Polly\NetEvolve.Pulse.Polly.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.MySql\NetEvolve.Pulse.MySql.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.MongoDB\NetEvolve.Pulse.MongoDB.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.PostgreSql\NetEvolve.Pulse.PostgreSql.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.RabbitMQ\NetEvolve.Pulse.RabbitMQ.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.SQLite\NetEvolve.Pulse.SQLite.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.SqlServer\NetEvolve.Pulse.SqlServer.csproj" />
<ProjectReference Include="..\..\src\NetEvolve.Pulse.Redis\NetEvolve.Pulse.Redis.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\src\NetEvolve.Pulse.MySql\Scripts\**\*.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>Scripts\MySql\%(RecursiveDir)%(Filename)%(Extension)</Link>
</None>
<None Include="..\..\src\NetEvolve.Pulse.PostgreSql\Scripts\**\*.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>Scripts\PostgreSql\%(RecursiveDir)%(Filename)%(Extension)</Link>
</None>
<None Include="..\..\src\NetEvolve.Pulse.SqlServer\Scripts\**\*.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>Scripts\SqlServer\%(RecursiveDir)%(Filename)%(Extension)</Link>
</None>
<None Include="..\..\src\NetEvolve.Pulse.SQLite\Scripts\**\*.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>Scripts\SQLite\%(RecursiveDir)%(Filename)%(Extension)</Link>
</None>
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="NetEvolve.Extensions.TUnit.IntegrationTestAttribute" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\templates\Predefined.cs" Link="Predefined.cs" />
</ItemGroup>
</Project>