Blog Archive

Search Blog

Blog List

Contact Me






Enter the code shown above in the box below
Send

 

Announcements

Recommended Websites

Events

Event StartEvent EndTitle

Recommended Reading

Most recent blog entries

If you have an EnvDTE.Project reference to an existing Solution Folder you can add a solution folder like so:
 
C#

((EnvDTE80.SolutionFolder)root.Object).AddSolutionFolder("solutionFolder");

or VB

DirectCast(root.[Object], EnvDTE80.SolutionFolder).AddSolutionFolder("solutionFolder")

where "root" is the EnvDTE.Project reference to the existing Solution Folder.

To unlock a file in Team Foundation Server you have to issue the following command at the Visual Studio Command Prompt:
 
TF UNDO filename /WORKSPACE:workspace;checkout_user /SERVER:servername
 
Where you change the lower case words with your particular case.  For more information go here: