You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
493 B
26 lines
493 B
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
|
|
|