Remove net461 from OpenTracing shim (#3224)

This commit is contained in:
Cijo Thomas 2022-04-22 09:05:32 -07:00 committed by GitHub
parent e35216a9a2
commit 5c0ad88576
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 2 deletions

View File

@ -12,7 +12,7 @@ using (e.g. `OpenTelemetry 1.0.2`):
* TBD
Runtime version (e.g. `net461`, `net48`, `netcoreapp3.1`, `net5.0` etc. You can
Runtime version (e.g. `net462`, `net48`, `netcoreapp3.1`, `net6.0` etc. You can
find this information from the `*.csproj` file):
* TBD

View File

@ -2,6 +2,9 @@
## Unreleased
* Removes .NET Framework 4.6.1. The minimum .NET Framework
version supported is .NET 4.6.2. ([#3190](https://github.com/open-telemetry/opentelemetry-dotnet/issues/3190))
## 1.0.0-rc9.3
Released 2022-Apr-15

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- OmniSharp/VS Code requires TargetFrameworks to be in descending order for IntelliSense and analysis. -->
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<Description>OpenTracing shim for OpenTelemetry .NET</Description>
<PackageTags>$(PackageTags);distributed-tracing;OpenTracing</PackageTags>
<IsPackable>true</IsPackable>