I have a console app that runs a self hosted WCF Data Service.
I have it auto building just fine. But now I want to take the latest build and move it to my Dev Machine and run it.
Something like this:
- Run the Build
- Kill the existing running exe (if it is running)
- Copy the new files over the old ones
- Run the new exe.
Is this something I am going to have to put together by hand? Are there tasks that are already done that may help with this?
Any suggestions would be helpful!