Skip to content

Commit 7d663bb

Browse files
committed
Added .NET 8 to build
1 parent 2aef858 commit 7d663bb

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

.github/workflows/build-linux.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ jobs:
1010
uses: actions/checkout@v1
1111
with:
1212
fetch-depth: 0
13-
- name: Setup .NET Core
13+
- name: Setup .NET Core 6
1414
uses: actions/setup-dotnet@v1
1515
with:
1616
dotnet-version: 6.x
17+
- name: Setup .NET Core 8
18+
uses: actions/setup-dotnet@v1
19+
with:
20+
dotnet-version: 8.x
1721
- name: Build Reason
1822
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1923
- name: Build Version

.github/workflows/build-osx.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ jobs:
1010
uses: actions/checkout@v1
1111
with:
1212
fetch-depth: 0
13-
- name: Setup .NET Core
13+
- name: Setup .NET Core 6
1414
uses: actions/setup-dotnet@v1
1515
with:
1616
dotnet-version: 6.x
17+
- name: Setup .NET Core 8
18+
uses: actions/setup-dotnet@v1
19+
with:
20+
dotnet-version: 8.x
1721
- name: Build Reason
1822
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1923
- name: Build Version

.github/workflows/build-windows.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ jobs:
1010
uses: actions/checkout@v1
1111
with:
1212
fetch-depth: 0
13-
- name: Setup .NET Core
13+
- name: Setup .NET Core 6
1414
uses: actions/setup-dotnet@v1
1515
with:
1616
dotnet-version: 6.x
17+
- name: Setup .NET Core 8
18+
uses: actions/setup-dotnet@v1
19+
with:
20+
dotnet-version: 8.x
1721
- name: Build Reason
1822
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1923
- name: Build Version

Exceptionless.Net.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ VisualStudioVersion = 17.5.33103.201
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{728C18BC-4085-4492-B0B2-8211CA209A50}"
77
ProjectSection(SolutionItems) = preProject
8+
.github\workflows\build-linux.yml = .github\workflows\build-linux.yml
9+
.github\workflows\build-osx.yml = .github\workflows\build-osx.yml
10+
.github\workflows\build-windows.yml = .github\workflows\build-windows.yml
811
build\common.props = build\common.props
912
CONTRIBUTING.md = CONTRIBUTING.md
1013
global.json = global.json

0 commit comments

Comments
 (0)