We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed118dc commit c1708d7Copy full SHA for c1708d7
1 file changed
.github/workflows/build.yml
@@ -12,6 +12,9 @@ jobs:
12
configuration: [Debug, Release]
13
14
runs-on: windows-latest
15
+
16
+ env:
17
+ Solution_Name: VirtualDesktopTimecodeServer.sln
18
19
steps:
20
- name: Checkout
@@ -21,12 +24,12 @@ jobs:
21
24
uses: microsoft/setup-msbuild@v1.0.2
22
25
23
26
- name: Restore the application
- run: msbuild VirtualDesktopTimecodeServer.sln /t:Restore /p:Configuration=$env:Configuration
27
+ run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
28
env:
29
Configuration: ${{ matrix.configuration }}
30
31
- name: Create the app package
- run: msbuild VirtualDesktopTimecodeServer.sln /p:Configuration=$env:Configuration
32
+ run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration
33
34
Appx_Bundle: Always
35
Appx_Bundle_Platforms: x64
0 commit comments