We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab5d7c commit 472e90cCopy full SHA for 472e90c
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,25 @@
1
+name: Build Timecode Server Extension
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
8
+ build:
9
10
+ runs-on: windows-latest
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
16
+ - name: Install .NET Core
17
+ uses: actions/setup-dotnet@v1
18
+ with:
19
+ dotnet-version: 4.7.1
20
21
+ - name: Setup MSBuild.exe
22
+ uses: microsoft/setup-msbuild@v1.0.2
23
24
+ - name: Create the app package
25
+ run: msbuild VirtualDesktopTimecodeServer.sln /p:Configuration=Release
0 commit comments