Skip to content

Commit

Permalink
feat: Update ExpressionEngine to net6.0 and net7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thygesteffensen committed Nov 16, 2022
1 parent 271a949 commit 6d16959
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Testing
strategy:
matrix:
dotnet: [ 'netcoreapp3.1', 'net5.0' ]
dotnet: [ 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0' ]
steps:
- name: Checkout code base
uses: actions/checkout@v2
Expand All @@ -26,7 +26,7 @@ jobs:
name: Building
strategy:
matrix:
dotnet: ['netcoreapp3.1', 'net5.0']
dotnet: [ 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0' ]
steps:
- name: Checkout code base
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Testing
strategy:
matrix:
dotnet: [ 'netcoreapp3.1', 'net5.0' ]
dotnet: [ 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0' ]
steps:
- name: Checkout code base
uses: actions/checkout@v2
Expand All @@ -32,7 +32,7 @@ jobs:

- uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
dotnet-version: '6.0.x'

- uses: actions/setup-node@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion ExpressionEngine/ExpressionEngine.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>

<PackageId>Delegate.ExpressionEngine</PackageId>
<Authors>Delegate A/S,thygesteffensen</Authors>
Expand Down
2 changes: 1 addition & 1 deletion Test/Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 6d16959

Please sign in to comment.