问题
Hi i have 2 commands need to execute in visual studio command prompt at one time using batch file.
C:\iwatch\trunk\CPCE Client\InterviewManagementServiceClient>svcutil http://localhost:19021/InterviewManagementService/InterviewManagementService.svc /l:C# /out:Reference.cs /ct:System.Collections.Generic.List`1 /t:code /n:*,iWatch.InterviewManagementService
C:\iwatch\trunk\CPCE Client\EfileServiceClient>svcutil http://localhost:19012/EfileService/EfileService.svc /l:C# /out:Reference.cs /ct:System.Collections.Generic.List`1 /t:code /n:*,iWatch.EfileService
i want to create a one batch file(.bat file) which will execute these two commands in visual studio command prompt.
回答1:
we can create a batch(.bat) file for executing the multiple commands in visual studio command prompt explained below.
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
the above command will call the visual studio command prompt and then we have to wrote our multiple commands then it will be executed and save this file in .bat file.
来源:https://stackoverflow.com/questions/32082212/creating-a-batch-files-for-visaul-studio-command