WeeXnesSuite/.forgejo/workflows/dotnet.yaml
WeeXnes 5c6b5dff76
Some checks failed
Dotnet Build / build (push) Failing after -1h58m21s
.forgejo/workflows/dotnet.yaml aktualisiert
2025-05-18 17:55:35 +00:00

24 lines
No EOL
445 B
YAML

name: Dotnet Build
on: [push]
jobs:
build:
runs-on: win11
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: MSBuild version
run: |
MSBuild.exe /version
- name: Restore Packages
run: nuget restore WeeXnes.sln
- name: Build Solution
run: |
MSBuild.exe WeeXnes.sln /p:DeleteExistingFiles=True /p:platform="Any CPU" /p:configuration="Release"