Hi,
I want to checkout a file in TFS using c#. i tried doing the below code :
string command = tfsCheckout;
System.Diagnostics.ProcessStartInfo procStartInfo = new System.Diagnostics.ProcessStartInfo("cmd", "/c " + command);
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
procStartInfo.CreateNoWindow = true;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = procStartInfo;
proc.Start();
But its not working. I am not getting an error at proc.Start(), my log file doesnot show any error and the code after proc.Start() gets executed well.
What is wrong here of which my file is not checkout in TFS ?
Thanks
Go to the complete details ...