Skip to content

Commit 9cc39e9

Browse files
Merge pull request #196 from ServiceComposer/mauroservienti-patch-1
Remove .NET 6 and .NET 7 support
2 parents 6cdd69f + 03481b9 commit 9cc39e9

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ jobs:
3232
uses: actions/[email protected]
3333
with:
3434
dotnet-version: |
35-
6.0.x
36-
7.0.x
3735
8.0.x
3836
9.0.x
3937
10.0.x
@@ -69,3 +67,4 @@ jobs:
6967
run: dotnet nuget push ./nugets/*.snupkg --source https://f.feedz.io/servicecomposer/pre-releases/symbols --api-key ${{ secrets.FEEDZ_API_KEY }}
7068

7169

70+

src/ServiceComposer.AspNetCore.Testing/ServiceComposer.AspNetCore.Testing.csproj

Lines changed: 1 addition & 11 deletions
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;net9.0;net10.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>
@@ -28,16 +28,6 @@
2828
<FrameworkReference Include="Microsoft.AspNetCore.App" />
2929
</ItemGroup>
3030

31-
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
32-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="[6.0.12, 7.0.0)" />
33-
<PackageReference Include="System.Text.Json" Version="[6.0.11, 7.0.0)" Label="Dependencies not directly used but required to address security vulnerabilities" />
34-
</ItemGroup>
35-
36-
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
37-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="[7.0.1, 8.0.0)" />
38-
<PackageReference Include="System.Text.Json" Version="[8.0.5, 9.0.0)" Label="Dependencies not directly used but required to address security vulnerabilities" />
39-
</ItemGroup>
40-
4131
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
4232
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="[8.0.0, 9.0.0)" />
4333
<PackageReference Include="System.Text.Json" Version="[8.0.5, 9.0.0)" Label="Dependencies not directly used but required to address security vulnerabilities" />

0 commit comments

Comments
 (0)