-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntegrationTests.csproj
53 lines (46 loc) · 2.72 KB
/
IntegrationTests.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- No warn is needed for autogenerated code by protobuf: CS8981 - The type name only contains lower-cased ascii characters. -->
<NoWarn Condition="'$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'net7.0'">CS8981</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<DefineConstants>$(DefineConstants);_WINDOWS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.EnterpriseServices" Condition="$(TargetFramework.StartsWith('net4'))" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" />
<PackageReference Include="Grpc.Tools" PrivateAssets="all" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="StrongNamer" Condition="$(TargetFramework.StartsWith('net4'))" />
<PackageReference Include="System.Collections.Immutable" />
<PackageReference Include="System.Runtime.InteropServices" />
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" />
<PackageReference Include="Testcontainers" />
<PackageReference Include="Verify.Xunit" />
<PackageReference Include="xunit.abstractions" />
<PackageReference Include="Xunit.SkippableFact" />
</ItemGroup>
<ItemGroup>
<Content Include="docker\azure.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\mongodb.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\mysql.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\oracle.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\postgres.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\redis.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\sql-server.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\kafka.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\zookeeper.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="docker\rabbitmq.Dockerfile" CopyToOutputDirectory="PreserveNewest" />
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\OpenTelemetry.AutoInstrumentation\OpenTelemetry.AutoInstrumentation.csproj" />
</ItemGroup>
<ItemGroup>
<!-- GrpcServices is 'none' so that we do not need to depend on the grpc nuget package, and we only need protobuf support. -->
<Protobuf Include="opentelemetry\**\*.proto" GrpcServices="none" />
</ItemGroup>
</Project>