Need Comparsion Feature in TFS to be used in Custom Application
Currently I am developing an custom tool. The requirement is as below:
Consider user wants to compare the file checked out in his machine with TFS lates version. User will go to the tool, will give the local path and server path of file. I开发者_如何学Python want to provide the user this option without opneing to VS 2008. Can anyone help me out?
Thanks in advance.
So basically you want to compare the local version to the tfs server version without opening Visual Studio?
You can use the TF Command line utilities to get the latest version from the server and make a diff of the two files via e.g. WinMerge. Or you can make use of the difference
command from the TF command line utilities: Difference Command.
You can also make use of MSBuild tasks to work with TFS without firing up Visual Studio.
精彩评论