Hi,
I want to create a .bat file so I can just click on it so it can run:
svcutil.exe /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/ServiceModelSamples/service
Can someone help me with the structure of the .bat file?
|
|
Hi, I want to create a .bat file so I can just click on it so it can run: svcutil.exe /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/ServiceModelSamples/service Can someone help me with the structure of the .bat file?
|
|||
|
|
|
|
Just put that line in the bat file... Alternatively you can even make a shortcut for svcutil.exe, then add the arguments in the 'target' window. |
||
|
|
|
|
A bat file has no structure...it is how you would type it on the command line. So just open your favourite editor..copy the line of code you want to run..and save the file as whatever.bat or whatever.cmd |
||
|
|
|
|
Just stick in a file and call it "ServiceModelSamples.bat" or something. You could add "@echo off" as line one, so the command doesn't get printed to the screen:
|
||
|
|
|
|
What's stopping you? Put this command in a text file, save it with the .bat (or .cmd) extension and double click on it... Presuming the command executes on your system, I think that's it. |
||
|
|
|
|
If you want to be real smart, at the command line type:
Then you have |
||
|
|