We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7388ed + 03a892a commit 4e93057Copy full SHA for 4e93057
.github/workflows/main.yml
@@ -0,0 +1,29 @@
1
+name: Build and Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: windows-latest
12
+ defaults:
13
+ run:
14
+ working-directory: SyncPlayWPF
15
+ steps:
16
+ - uses: actions/checkout@v2
17
18
+ - name: Setup MSBuild
19
+ uses: microsoft/setup-msbuild@v1
20
21
+ - name: Setup NuGet
22
+ uses: NuGet/[email protected]
23
24
+ - name: Restore Packages
25
+ run: nuget restore SyncPlayWPF.sln
26
27
+ - name: Build Solution
28
+ run: |
29
+ msbuild.exe SyncPlayWPF.sln /p:platform="Any CPU" /p:configuration="Release"
0 commit comments