From 0ffa9198f5c6f73d3abe5a6125502c057a9408c5 Mon Sep 17 00:00:00 2001 From: Andrey Nekrasov Date: Wed, 23 Dec 2020 12:28:34 +0300 Subject: [PATCH] CDPX: add missed restore nuget step (#8714) --- .pipelines/pipeline.user.windows.yml | 4 ++++ .pipelines/restore-tools.cmd | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 .pipelines/restore-tools.cmd diff --git a/.pipelines/pipeline.user.windows.yml b/.pipelines/pipeline.user.windows.yml index 5008914ed5..469ad54271 100644 --- a/.pipelines/pipeline.user.windows.yml +++ b/.pipelines/pipeline.user.windows.yml @@ -37,6 +37,10 @@ restore: - !!defaultcommand name: 'Restore Localization packages' command: '.pipelines\restore-localization.cmd' + - !!defaultcommand + name: 'Restore Tools packages' + command: '.pipelines\restore-tools.cmd' + build: diff --git a/.pipelines/restore-tools.cmd b/.pipelines/restore-tools.cmd new file mode 100644 index 0000000000..852d59942d --- /dev/null +++ b/.pipelines/restore-tools.cmd @@ -0,0 +1,3 @@ +cd /D "%~dp0" + +nuget restore ../tools/BugReportTool/BugReportTool.sln || exit /b 1