TFS Build without a build servers
Ideally, your builds should be taking place on a configured build server – which pulls the latest code (from a specified branch) and then tries to compile it. In a perfect world, you would run a set of automated unit tests before passing the build.
What if you do not have a separate TFS build server? What if you still want to try and do some sort of automated build – but do not have a dedicated TFS server to utilize?
Use your desktop as the build server
When you get down to the details, the only thing the TFS server would have done for you is:
- Get the latest source code – using TF.exe
- Build it using msbuild.exe– with possibly some optional parameters passed in.
You can accomplish both these easily on your own desktop.
I noticed that someone had already written a very descriptive post on this topic – so I am just going to point to their post .
Leave a Reply