dotnet-installer/test/ArgumentForwardingTests/Reflector/reflector_cmd.cmd
2016-01-23 13:01:29 -08:00

19 lines
236 B
Batchfile

@echo off
set ALL_ARGS=
set a=%1
if not defined a goto :doneSetArgs
set ALL_ARGS=%~1%
shift
:setArgs
set a=%1
if not defined a goto :doneSetArgs
set ALL_ARGS=%ALL_ARGS%,%~1%
shift
goto setArgs
:doneSetArgs
echo %ALL_ARGS%
goto :EOF