VSSDK how to set default location of ToolWindow pane to "docked"
looking for your tool window sample of vssdk [MsVsShell.ProvideToolWindow(typeof(PersistedWindowPane), Style = MsVsShell.VsDockStyle.Tabbed, Window = "3ae79031-e1bc-11d0-8f78-00a0c9110057")] and the value of "3ae79031-e1bc-11d0-8f78-00a0c9110057" means guid of solution explorer. http://msdn.microsoft.com/en-us/library/envdte.constants.vswindowkindsolutionexplorer(v=vs.80).aspx if we want to change the locaton where toolwindow docked, replace Window value to guid you want docked. Maybe... for example, ankhsvn set that value of pendingchanges toolwindow like following: [ProvideToolWindow(typeof(PendingChangesToolWindow), Style = VsDockStyle.Tabbed, Orientation = ToolWindowOrientation.Bottom, Transient = false, Window = ToolWindowGuids80.Outputwindow)]











