I have 8 vms, each having the product code. I've created an application using which I can trigger a codedui automation run remotely using mstest. Now the problem is, everytime I have to copy and paste the latest dlls on all the 8 vms to run the recently updated code and the transfering files from local machine to vm takes like eternity to copy over the network.
Is there a way by which I can create a batchfile using which I can download the latest code from the tfs server and then build my codedui test code on each of the VMs?
I know tf get and msbuild can be used for this but I do not know how to use it correctly as getting latest from the server would result in conflicts which needs to be resolved first before building the solution.
Is there a way to replace the entire solution using command line while performing get operation?
Is there a better approach to solve my problem.
Thanks!