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:
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!
Just sounds like you need a regular batch file called as a post-build step that:
If to be performed on a build server, make sure you have a workflow activity inserted after the build step that allows you to start such a batch file (like the InvokeProcess activity)
Or am I overseeeing some complexity here?