I am trying to automate the creation of team projects using a command built into VS 2010 called File.BatchNewTeamProject using a project settings file as an argument, and executing this as a process silently in the background from my c# win app. I am aware of a requirement that Team Explorer has to be open and connected to TFS before this command can run, however, when I start a process with devenv.exe, a fresh instance of visual studio pops up with Team Explorer not connected by default. How can I solve this problem?

link|improve this question

50% accept rate
feedback

3 Answers

Please see my response to this related question: http://stackoverflow.com/questions/1558306/tfs-2010-beta-1-creating-team-projects-programmatically

link|improve this answer
I have added the dll but there doesn't seem to be a BatchNewTeamProject class available. Or like you said, it works only on Beta2? Could you elaborate with an example? – TS. Oct 15 '09 at 4:11
feedback

Just posted this project on Codeplex: http://tfsprojprovisioner.codeplex.com/

Includes an assembly that hides BatchNewTeamProject behind a simple programmatic interface, and a sample desktop app that you can use to create and provision new Team Projects. Must be run on a computer that has VS 2010 installed, and by a user that has permissions to create new projects. But it doesn't require you to interact with VS directly, at all.

link|improve this answer
feedback

I added an extra command statement and the whole thing started working.

devenv /command view.TeamExplorer /command "File.BatchNewTeamProject "C:\vss2TeamFoundation\ProjectCreation\Ajax.xml

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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