We are building a website, which is serving only asmx-webservices. These webervices are consumed by Windows Mobile clients.
Our developers write the code and test most of the functions on their development machines. Then they use the "Publish Website" function in Visual Studio to precompile the website and to copy it to a network share. This share points to a IIS6 root folder.
After that, they use our mobile clients to do integration tests with the latest version of the webservices.
Sometimes it is the case, that the developers use the remote debugger to debug on the integration machine.
This process has some major drawbacks:
- The code which is currently running is not necessary checked in, so you never know which version is running on the machine
- One developer can easily overwrite the published build of another developer
- While one developer is debugging the remote machine, execution of the services is blocked for the others
What is your best practise to develop such kind of system in a team? Do we need automated builds? We have no unit tests for that system.
Our company will install the TFS this week. Is there a template or something which supports out process?