Skip to content

Commit c1708d7

Browse files
+1
1 parent ed118dc commit c1708d7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
configuration: [Debug, Release]
1313

1414
runs-on: windows-latest
15+
16+
env:
17+
Solution_Name: VirtualDesktopTimecodeServer.sln
1518

1619
steps:
1720
- name: Checkout
@@ -21,12 +24,12 @@ jobs:
2124
uses: microsoft/setup-msbuild@v1.0.2
2225

2326
- name: Restore the application
24-
run: msbuild VirtualDesktopTimecodeServer.sln /t:Restore /p:Configuration=$env:Configuration
27+
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
2528
env:
2629
Configuration: ${{ matrix.configuration }}
2730

2831
- name: Create the app package
29-
run: msbuild VirtualDesktopTimecodeServer.sln /p:Configuration=$env:Configuration
32+
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration
3033
env:
3134
Appx_Bundle: Always
3235
Appx_Bundle_Platforms: x64

0 commit comments

Comments
 (0)