Remove net452 from console exporter project (#2139)

This commit is contained in:
Cijo Thomas 2021-07-16 11:55:56 -07:00 committed by GitHub
parent a9fed4252b
commit 405bbda121
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 6 deletions

View File

@ -9,6 +9,9 @@ please check the latest changes
## Unreleased
* Removes .NET Framework 4.5.2 support. The minimum .NET Framework version
supported is .NET 4.6.1. [2138](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2138)
## 1.1.0
Released 2021-Jul-12

View File

@ -14,7 +14,6 @@
// limitations under the License.
// </copyright>
#if NET461 || NETSTANDARD2_0
using System;
using OpenTelemetry.Exporter;
@ -41,4 +40,3 @@ namespace OpenTelemetry.Logs
}
}
}
#endif

View File

@ -14,8 +14,6 @@
// limitations under the License.
// </copyright>
#if NET461 || NETSTANDARD2_0
using System;
using System.Collections.Generic;
using OpenTelemetry.Logs;
using OpenTelemetry.Resources;
@ -99,4 +97,3 @@ namespace OpenTelemetry.Exporter
}
}
}
#endif

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452;net461</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<Description>Console exporter for OpenTelemetry .NET</Description>
<PackageTags>$(PackageTags);Console;distributed-tracing</PackageTags>
<MinVerTagPrefix>core-</MinVerTagPrefix>