vote up 3 vote down star
1

How do I get the latest version of my solution recursively like its done in the solution explorer context menu of Visual Studio? Need to do this from the command line or via a macro.

/* 'tf get' only gets contents of a folder recursively (not solution). It does not look at project dependencies and so on. That won't work. */

I'm trying to automate a part of my daily routine by using a set of batch files. I am sure a lot of developers would love to have something like this.

flag

48% accept rate

6 Answers

vote up 1 vote down

Well... It looks like you have three options.

  1. In your batch file, issue a tf get at each directory branch you want.

  2. reorganize your solution so that all of the dependencies are under the same root path.

  3. Use the visual way of right clicking on the loaded project and issuing the get command.

The only time it's actually solution aware is when the project is loaded in the IDE; or when it's loaded by the build servers.

link|flag
Chris, At times, I've seen the IDE automatically check-out files for reasons I could not understand. I am sure tf.exe will not handle those things automatically. There should be some means via a macro or using an msbuild script... I am trying to create a batch file which gets the latest version of a solution and builds it. There are about 10 solutions which I need to update this way every morning... – Agnel Kurian Oct 13 at 8:41
As a side note: studio will check out solution files if it thinks a project file has been added / changed. Also, it will check out test related files (.vsmdi for example) for pretty much no reason at all. I'm not sure what this has to do with pulling the latest version and building it though. – Chris Lively Oct 13 at 20:41
vote up 0 vote down

Have you found out which specific files are being checked out by the IDE?

link|flag
Jon, In one case VS checked out the project file with the following message: There appears to be a discrepancy between the solution's source control information about some project(s) and the information in the project file(s). – Agnel Kurian Oct 13 at 8:40
vote up 0 vote down

I know you mentioned batch files, but let me throw something else out for you.

I'm going to guess that you are using the 2005 version of TFS. 2008 has all of the scheduling stuff built in.

However, you could also use CruiseControl.net to do scheduled builds for you. I've used both TFS 2008 and CruiseControl and they both seem to work just fine.

link|flag
vote up 1 vote down

TFS has a .Net SDK that allows you to create your own custom programs that interact with a TFS Server. You could write a small program that performs the task you need:

TeamFoundationServer tfs = TeamFoundationServerFactory.GetServer("MyServer");
VersionControlServer vcs = (VersionControlServer)tfs.GetService(typeof(VersionControlServer));

WorkSpace[] myWorkSpaces = vcs.QueryWorkSpaces("MyWorkSpaceName", "MyLoginName", "MyComputer");

myWorkSpaces[0].Get(VersionSpec.Latest, GetOptions.GetAll);
link|flag
vote up 0 vote down

One more possible solution is to use powershell. The following link is to a code project sample which shows how to get a solution from TFS and build it locally. Powershell is a much better solution than regular batch files.

http://www.codeproject.com/KB/install/ExtractAndBuild.aspx

link|flag
vote up 0 vote down

Don't do this. VS is not nearly as smart as you think. (As evidenced by the mysterious & futile checkouts that everyone has experienced for 3+ product cycles, you & I included. This is not the mark of a reliable system!)

What you describe only works for project-to-project references. Running source control operations from Solution Explorer will "by design" omit:

  • project-to-assembly references
  • video, sound, PDFs, any other type of media that VS doesn't support but may play an integral role in the product
  • MSBuild *.targets files that are referenced in your projects
  • any files of any kind that are referenced from custom targets
  • any 3rd party executables required by the build process
  • etc

Just say no to incomplete synchronization. Down that path, only headaches lie.

Run 'tf get' with no path scope from the command line, or rightclick -> Get from the root $/ node in Source Control Explorer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.