2 changed files with 28 additions and 1 deletions
@ -0,0 +1,27 @@ |
|||
name: "Build" |
|||
|
|||
on: |
|||
push: |
|||
branches: [ master ] |
|||
paths: |
|||
- "**.cs" |
|||
- "**.csproj" |
|||
|
|||
env: |
|||
DOTNET_VERSION: "7.0.102" |
|||
|
|||
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 |
|||
Loading…
Reference in new issue