Skip to content

Commit 2dbe1f4

Browse files
authored
feat: Drop net7 TFM (#284)
## This PR .net7 was EOL on May 14, 2024 https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core Signed-off-by: Benjamin Evenson <[email protected]>
1 parent 871dcac commit 2dbe1f4

File tree

8 files changed

+4
-9
lines changed

8 files changed

+4
-9
lines changed

.github/workflows/ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
with:
3333
dotnet-version: |
3434
6.0.x
35-
7.0.x
3635
8.0.x
3736
source-url: https://nuget.pkg.github.com/open-feature/index.json
3837

@@ -68,7 +67,6 @@ jobs:
6867
with:
6968
dotnet-version: |
7069
6.0.x
71-
7.0.x
7270
8.0.x
7371
source-url: https://nuget.pkg.github.com/open-feature/index.json
7472

.github/workflows/code-coverage.yml

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
with:
3131
dotnet-version: |
3232
6.0.x
33-
7.0.x
3433
8.0.x
3534
source-url: https://nuget.pkg.github.com/open-feature/index.json
3635

.github/workflows/e2e.yml

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
with:
2626
dotnet-version: |
2727
6.0.x
28-
7.0.x
2928
8.0.x
3029
source-url: https://nuget.pkg.github.com/open-feature/index.json
3130

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
with:
3838
dotnet-version: |
3939
6.0.x
40-
7.0.x
4140
8.0.x
4241
source-url: https://nuget.pkg.github.com/open-feature/index.json
4342

src/OpenFeature/OpenFeature.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0;net462</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net462</TargetFrameworks>
55
<RootNamespace>OpenFeature</RootNamespace>
66
<PackageReadmeFile>README.md</PackageReadmeFile>
77
</PropertyGroup>

test/OpenFeature.Benchmarks/OpenFeature.Benchmarks.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<RootNamespace>OpenFeature.Benchmark</RootNamespace>
66
<OutputType>Exe</OutputType>
77
</PropertyGroup>

test/OpenFeature.E2ETests/OpenFeature.E2ETests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks>
66
<RootNamespace>OpenFeature.E2ETests</RootNamespace>
77
</PropertyGroup>

test/OpenFeature.Tests/OpenFeature.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks>
66
<RootNamespace>OpenFeature.Tests</RootNamespace>
77
</PropertyGroup>

0 commit comments

Comments
 (0)