Skip to content

Commit

Permalink
Added .NET 8 to build
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Dec 26, 2023
1 parent 2aef858 commit 7d663bb
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ jobs:
uses: actions/checkout@v1
with:
fetch-depth: 0
- name: Setup .NET Core
- name: Setup .NET Core 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.x
- name: Setup .NET Core 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x
- name: Build Reason
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
- name: Build Version
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ jobs:
uses: actions/checkout@v1
with:
fetch-depth: 0
- name: Setup .NET Core
- name: Setup .NET Core 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.x
- name: Setup .NET Core 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x
- name: Build Reason
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
- name: Build Version
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ jobs:
uses: actions/checkout@v1
with:
fetch-depth: 0
- name: Setup .NET Core
- name: Setup .NET Core 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.x
- name: Setup .NET Core 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x
- name: Build Reason
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
- name: Build Version
Expand Down
3 changes: 3 additions & 0 deletions Exceptionless.Net.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ VisualStudioVersion = 17.5.33103.201
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{728C18BC-4085-4492-B0B2-8211CA209A50}"
ProjectSection(SolutionItems) = preProject
.github\workflows\build-linux.yml = .github\workflows\build-linux.yml
.github\workflows\build-osx.yml = .github\workflows\build-osx.yml
.github\workflows\build-windows.yml = .github\workflows\build-windows.yml
build\common.props = build\common.props
CONTRIBUTING.md = CONTRIBUTING.md
global.json = global.json
Expand Down

0 comments on commit 7d663bb

Please sign in to comment.