30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!-- OmniSharp/VS Code requires TargetFrameworks to be in descending order for IntelliSense and analysis. -->
|
|
<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0;net462</TargetFrameworks>
|
|
<Description>OpenTelemetry .NET SDK</Description>
|
|
<!--
|
|
TODO: Disable this exception, and actually do document all public API.
|
|
-->
|
|
<NoWarn>$(NoWarn),1591,CS0618</NoWarn>
|
|
<MinVerTagPrefix>core-</MinVerTagPrefix>
|
|
|
|
<!-- this is temporary. will remove in future PR. -->
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<!--Do not run ApiCompat for netstandard2.1/net6.0 as this is newly added. Remove this property once we have released a stable version.-->
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.1' OR '$(TargetFramework)' == 'net6.0'">
|
|
<RunApiCompat>false</RunApiCompat>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="$(MicrosoftExtensionsLoggingConfigurationPkgVer)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(RepoRoot)\src\OpenTelemetry.Api.ProviderBuilderExtensions\OpenTelemetry.Api.ProviderBuilderExtensions.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|