Team Foundation Power Tool
April 11, 2007
COOLNESS!!! The Process Template Editor is the tool that I worked on with Joel Semeniuk, it is now part of the Microsoft Visual Studio 2005 Team Foundation Server Power Tool.
It is also presented on Channel9
Connecting to a Team Foundation Server
March 17, 2006
You can use the following code to connect to a Team Foundation Server using the built in Connect dialog and User Authentication dialog.
using Microsoft.TeamFoundation.Proxy;
DomainProjectPicker domainProjectPicker =
new DomainProjectPicker(DomainProjectPickerMode.None);
//Options for DomainProjectPickerMode
// DomainProjectPickerMode.AllowMultiSelect;
// DomainProjectPickerMode.AllowProjectSelect;
// DomainProjectPickerMode.DisableServerSelect;
// DomainProjectPickerMode.ForwardWndMsgOutsideVS;
// DomainProjectPickerMode.None;
TeamFoundationServer tfs;
if (domainProjectPicker.ShowDialog() == DialogResult.OK)
{
tfs= domainProjectPicker.SelectedServer;
tfs.EnsureAuthenticated(new UICredentialsProvider());
}
New version of Process Template Editor
March 13, 2006
We have uploaded a new release of the Process Template Editor (version PTE0.9.2263.536)
VSTS Customization Toolkit: Releases
Bug fixes only.