Skip to content

Commit 6b7c3fa

Browse files
committed
Added nuget restore to the workflow
1 parent 959ed79 commit 6b7c3fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/dmxc.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
- name: Setup MSBuild
1818
uses: microsoft/setup-msbuild@v1.1
1919

20+
- name: Setup Nuget
21+
uses: nuget/setup-nuget@v1
22+
2023
- name: Navigate to Workspace
2124
run: cd $GITHUB_WORKSPACE
2225

@@ -32,7 +35,9 @@ jobs:
3235
}
3336
3437
- name: Restore nuget packages
35-
run: msbuild.exe ${{env.SolutionName}}.sln /t:restore
38+
run: |
39+
msbuild.exe ${{env.SolutionName}}.sln /t:restore
40+
nuget restore ${{env.SolutionName}}.sln
3641
3742
- name: Build Solution
3843
run: |

0 commit comments

Comments
 (0)