Specify sln file to use for razzle nuget restore (#10606)

After the introduction of scratch.sln, the nuget restore in razzle.cmd fails. This fixes it by specifying the sln file to use.

## PR Checklist
* [x] Closes #10605
* [x] CLA signed. If not, go over [here](https://cla.opensource.microsoft.com/microsoft/Terminal) and sign the CLA
* [ ] Tests added/passed

## Validation Steps Performed
Ran razzle
This commit is contained in:
Mim van den Bos
2021-07-12 22:50:14 +02:00
committed by GitHub
parent 1d33429673
commit 0980a0d50f

View File

@@ -21,7 +21,7 @@ rem Add nuget to PATH
set PATH=%PATH%%OPENCON%\dep\nuget;
rem Run nuget restore so you can use vswhere
nuget restore %OPENCON% -Verbosity quiet
nuget restore %OPENCON%\OpenConsole.sln -Verbosity quiet
rem Find vswhere
rem from https://github.com/microsoft/vs-setup-samples/blob/master/tools/vswhere.cmd