I have a specific artifact in TFS, say changeset \"123\", which has the URI \"vstfs:///VersionControl/Changeset/123\". I realized that the link \"ht
In VS 2015 you can use the following code taken from here
public void ViewChangesetDetails(int changesetId) { ITeamExplorer teamExplorer = this.GetService(); if (teamExplorer != null) { teamExplorer.NavigateToPage(new Guid(TeamExplorerPageIds.ChangesetDetails), changesetId); } }