summaryrefslogtreecommitdiff
path: root/publish-packages.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'publish-packages.cmd')
-rw-r--r--publish-packages.cmd23
1 files changed, 23 insertions, 0 deletions
diff --git a/publish-packages.cmd b/publish-packages.cmd
new file mode 100644
index 0000000000..5831d29cc2
--- /dev/null
+++ b/publish-packages.cmd
@@ -0,0 +1,23 @@
+@if "%_echo%" neq "on" echo off
+setlocal EnableDelayedExpansion
+
+if /I [%1] == [-?] goto Usage
+if /I [%1] == [-help] goto Usage
+
+echo %~dp0run.cmd publish-packages %*
+call %~dp0run.cmd publish-packages %*
+@exit /b %ERRORLEVEL%
+
+:Usage
+echo.
+echo Publishes the NuGet packages to the specified location.
+echo -? - Prints Usage
+echo -help - Prints Usage
+echo For publishing to Azure the following properties are required.
+echo -AzureAccount="account name"
+echo -AzureToken="access token"
+echo -BuildType="Configuration"
+echo -BuildArch="Architecture"
+echo Architecture can be x64, x86, arm, or arm64
+echo Configuration can be Release, Debug, or Checked
+exit /b \ No newline at end of file