I had a batch command that copies multiple files from source to destination
for %I in ( C:\Source\abc.txt C:\Source\cba.txt) do copy %I C:\Destination
if we give the command in buildevent->prebuild event ->commandline of visual studio 2013
Its throwing me the error
error MSB3073: The command "for %I in ( C:\Source\abc.txt C:\Source\cba.txt) do xcopy %I C:\Destination :VCEnd" exited with code 255.
If we run the command in command prompt its successfully copied.
Why this is throwing the error in vs 2013 ?
Thanks Phani