Merge pull request #973 from colinin/rel-8.2.0 #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build" | |
on: | |
push: | |
paths: | |
- "**.cs" | |
- "**.csproj" | |
env: | |
DOTNET_VERSION: "8.0.200" | |
jobs: | |
build: | |
name: "Build" | |
runs-on: "windows-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Build All | |
run: .\build-aspnetcore-build-sln.ps1 -f | |
working-directory: .\build | |
shell: powershell |