Creating a batch files for visaul studio command

北城余情 提交于 2019-12-14 03:27:31

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!