Skip to content

Commit 24e235f

Browse files
authored
chore: added dotnet-desktop.yml
1 parent 6e5e334 commit 24e235f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/dotnet-desktop.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build .NET Framework Desktop App
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: windows-2022
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v3
16+
17+
- name: Setup MSBuild
18+
uses: microsoft/[email protected]
19+
20+
- name: Restore NuGet packages
21+
run: nuget restore SA.sln
22+
23+
- name: Build with MSBuild
24+
run: msbuild SA.sln /p:Configuration=Release

0 commit comments

Comments
 (0)