30 lines
997 B
XML
30 lines
997 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!-- OmniSharp/VS Code requires TargetFrameworks to be in descending order for IntelliSense and analysis. -->
|
|
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
|
|
<Description>OpenTracing shim for OpenTelemetry .NET</Description>
|
|
<PackageTags>$(PackageTags);distributed-tracing;OpenTracing</PackageTags>
|
|
<IsPackable>true</IsPackable>
|
|
<!--
|
|
TODO: Disable this exception, and actually do document all public API.
|
|
-->
|
|
<NoWarn>$(NoWarn),1591</NoWarn>
|
|
|
|
<!-- this is temporary. will remove in future PR. -->
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="OpenTracing" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(RepoRoot)\src\OpenTelemetry.Api\OpenTelemetry.Api.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="$(RepoRoot)\src\OpenTelemetry.Api\Internal\Guard.cs" Link="Includes\Guard.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|