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