Skip to content

Commit 15e6917

Browse files
committed
added restore steps back
1 parent 820def4 commit 15e6917

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/aurora-dev.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
- name: Setup MSBuild.exe
4848
uses: microsoft/setup-msbuild@v1.0.2
4949

50+
# Restore the application to populate the obj folder with RuntimeIdentifiers
51+
- name: Restore the application
52+
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
53+
env:
54+
Configuration: ${{ matrix.configuration }}
55+
5056
- name: Build
5157
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration
5258
env:

.github/workflows/aurora-release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
- name: Setup MSBuild.exe
4848
uses: microsoft/setup-msbuild@v1.0.2
4949

50+
# Restore the application to populate the obj folder with RuntimeIdentifiers
51+
- name: Restore the application
52+
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
53+
env:
54+
Configuration: ${{ matrix.configuration }}
55+
5056
- name: Build
5157
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration
5258
env:

0 commit comments

Comments
 (0)