We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f66fb7d commit 9aa219bCopy full SHA for 9aa219b
2 files changed
build.cmd
@@ -1 +1,2 @@
1
-powershell -ExecutionPolicy Unrestricted scripts\build.ps1 %1
+@if "%1" == "" echo Please specify Debug or Release && EXIT /B
2
+powershell -ExecutionPolicy Unrestricted scripts\build.ps1 -Package:$true -Config:%1
install.cmd
@@ -1,4 +1,3 @@
-@set Configuration=%1
-@if "%Configuration%" == "" echo Please specify Debug or Release
3
-tools\VsixUtil\vsixutil /install "build\%Configuration%\GitHub.VisualStudio.vsix"
4
-@echo Installed %Configuration% build of GitHub for Visual Studio
+tools\VsixUtil\vsixutil /install "build\%1\GitHub.VisualStudio.vsix"
+@echo Installed %1 build of GitHub for Visual Studio
0 commit comments