opentelemetry-dotnet/src/OpenTelemetry.Api/OpenTelemetry.Api.csproj

25 lines
811 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<Description>OpenTelemetry .NET instrumentation API</Description>
<RootNamespace>OpenTelemetry</RootNamespace>
<DefineConstants>$(DefineConstants);API</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Trace\Internal\**" />
<EmbeddedResource Remove="Trace\Internal\**" />
<None Remove="Trace\Internal\**" />
</ItemGroup>
<!--
Uncomment for development. This will disable the verification that every public method needs to be documented.
<PropertyGroup>
<NoWarn>$(NoWarn),1591</NoWarn>
</PropertyGroup>
-->
<ItemGroup>
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.6.0" />
</ItemGroup>
</Project>