Skip to content

Commit 6d16959

Browse files
feat: Update ExpressionEngine to net6.0 and net7.0
1 parent 271a949 commit 6d16959

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Testing
1414
strategy:
1515
matrix:
16-
dotnet: [ 'netcoreapp3.1', 'net5.0' ]
16+
dotnet: [ 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0' ]
1717
steps:
1818
- name: Checkout code base
1919
uses: actions/checkout@v2
@@ -26,7 +26,7 @@ jobs:
2626
name: Building
2727
strategy:
2828
matrix:
29-
dotnet: ['netcoreapp3.1', 'net5.0']
29+
dotnet: [ 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0' ]
3030
steps:
3131
- name: Checkout code base
3232
uses: actions/checkout@v2

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Testing
1313
strategy:
1414
matrix:
15-
dotnet: [ 'netcoreapp3.1', 'net5.0' ]
15+
dotnet: [ 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0' ]
1616
steps:
1717
- name: Checkout code base
1818
uses: actions/checkout@v2
@@ -32,7 +32,7 @@ jobs:
3232

3333
- uses: actions/setup-dotnet@v1
3434
with:
35-
dotnet-version: '5.0.x'
35+
dotnet-version: '6.0.x'
3636

3737
- uses: actions/setup-node@v2
3838
with:

ExpressionEngine/ExpressionEngine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
55

66
<PackageId>Delegate.ExpressionEngine</PackageId>
77
<Authors>Delegate A/S,thygesteffensen</Authors>

Test/Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)