Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
321 views
in Technique[技术] by (71.8m points)

c# - Creating a batch files for visaul studio command

Hi i have 2 commands need to execute in visual studio command prompt at one time using batch file.

C:iwatch runkCPCE ClientInterviewManagementServiceClient>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 runkCPCE ClientEfileServiceClient>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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.0VCvcvarsall.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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...