Skip to content

Commit 995d5f5

Browse files
Update to .NET8.0
Add global.json Minor
1 parent de54877 commit 995d5f5

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
dotnet-version: |
2727
3.1.x
28-
6.x
28+
8.x
2929
- name: Restore dependencies
3030
run: dotnet restore
3131
- name: Build

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
dotnet-version: |
2323
3.1.x
24-
6.x
24+
8.x
2525
- name: Restore dependencies
2626
run: dotnet restore
2727
- name: Set Version

IntelliTect.Multitool.Tests/IntelliTect.Multitool.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<Import Project="../IntelliTect.Multitool/Build/IntelliTect.Multitool.targets" />
44
<PropertyGroup>
5-
<TargetFrameworks>netcoreapp3.1; net6.0; net7.0</TargetFrameworks>
5+
<TargetFrameworks>netcoreapp3.1; net6.0; net8.0</TargetFrameworks>
66

77
<IsPackable>false</IsPackable>
88
</PropertyGroup>

IntelliTect.Multitool.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1212
.github\workflows\build-and-test.yml = .github\workflows\build-and-test.yml
1313
.github\workflows\deploy.yml = .github\workflows\deploy.yml
1414
Directory.Build.props = Directory.Build.props
15+
Directory.Packages.props = Directory.Packages.props
1516
README.md = README.md
1617
EndProjectSection
1718
EndProject

global.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"version": "8.0.100",
4+
"rollForward": "minor",
5+
"allowPrerelease": false
6+
}
7+
}

0 commit comments

Comments
 (0)