Skip to content

Commit

Permalink
adjusted for .net core 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Brent Lucas committed Jan 30, 2024
1 parent adf9608 commit 56ff956
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/PullRequestBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ jobs:
- name: Nuget Restore for Modern App
run: dotnet restore "${{ env.MODERN_SLN }}"

- name: Setup .NET 8.0 Pre-release SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0'
include-prerelease: True

- name: Setup .NET 3.1 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'

- name: Build Modern Solution
run: dotnet publish "${{ env.MODERN_SLN }}" --configuration Release
env:
Expand Down

0 comments on commit 56ff956

Please sign in to comment.