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.
1 parent e1cc015 commit 874dfa7Copy full SHA for 874dfa7
.github/workflows/cd-store-preview.yml
@@ -70,10 +70,6 @@ jobs:
70
shell: cmd
71
run: |
72
for /f %%a in ('dir /b /a:d %localappdata%\Microsoft\VisualStudio\17*') do echo UsePreviews=True>%localappdata%\Microsoft\VisualStudio\%%a\sdk.txt
73
-
74
- - name: Restore NuGet
75
- shell: pwsh
76
- run: 'nuget restore $env:SOLUTION_NAME'
77
78
- name: Restore Files
79
shell: pwsh
@@ -85,6 +81,13 @@ jobs:
85
81
-p:PublishReadyToRun=true `
86
82
-v:quiet
87
83
84
+ - name: Restore NuGet Packages for Launcher Project
+ shell: pwsh
+ run: |
+ nuget restore "$env:LAUNCHER_PROJECT_PATH" `
88
+ -SolutionDirectory "$env:WORKING_DIR" `
89
+ -Verbosity detailed
90
+
91
- name: Build launcher project
92
93
0 commit comments