55 lines
2.2 KiB
XML
55 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AddTestStrongNameAssemblyKeyOnNetFramework>true</AddTestStrongNameAssemblyKeyOnNetFramework>
|
|
<!-- No warn is needed for autogenerated code by protobuf: CS8981 - The type name only contains lower-cased ascii characters. -->
|
|
<NoWarn Condition="'$(TargetFramework)' == 'net7.0'">CS8981</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
|
|
<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" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' OR '$(TargetFramework)' == 'net6.0' ">
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<None Update="StrongNamedTestsIntegrations.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|