Skip to content

Commit eb2fe24

Browse files
committed
Instead of relying on msbuild to restore packages, explicitly use the NuGet CLI to restore packages.
1 parent eb4e2e8 commit eb2fe24

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,11 @@ jobs:
3838
run: |
3939
./vcpkg/vcpkg install ms-gsl:x86-windows ms-gsl:x64-windows ms-gsl:arm64-windows
4040
41+
- name: Install NuGet CLI
42+
run: choco install nuget.commandline
43+
4144
- name: Restore NuGet Packages
42-
run: msbuild -t:restore socksify.sln
45+
run: nuget restore socksify.sln
4346

4447
- name: Parse Version
4548
shell: bash

0 commit comments

Comments
 (0)