Skip to content

Commit

Permalink
Removes .NET 7.0 build target and CI (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-hensley authored Sep 3, 2024
1 parent bec2694 commit 03d753a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
matrix:
os: [ windows-latest, ubuntu-latest ]
version: [ net462, net6.0, net7.0, net8.0 ]
version: [ net462, net6.0, net8.0 ]
exclude:
- os: ubuntu-latest
version: net462
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### BREAKING CHANGES

* Drops supports for .NET 7. EOL was May 24 2024
([#116](https://github.com/grafana/grafana-opentelemetry-dotnet/pull/116))
* Separates resource detectors and instrumentations. Removes resource detector
names from `Grafana.OpenTelemetry.Instrumentation` enumeration. Adds new
`Grafana.OpenTelemetry.ResourceDetectors` enumeration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.0;net462</TargetFrameworks>
<TargetFrameworks>net8.0;net6.0;netstandard2.0;net462</TargetFrameworks>
<Nullable>disable</Nullable>

<IsPackable>false</IsPackable>
Expand Down

0 comments on commit 03d753a

Please sign in to comment.