I'm writing an app that integrates with TFS via the official SDKs to automate and support various common actions. Although most of it is automation and the TFS API exposes pretty much everything I need, some of the actions need user intervention so I need to display information to the user.
I've found methods such as Difference.VisualDiffItems
that allow me to easily compare files visually using the same UI that Visual Studio uses. I also need to display an item's history (including branches, renames, etc.) and I would love to use a built-in UI instead of having to write my own. The item history UI is actually quite complex and I'd thought that MS would've provided it in the SDK, but I can't seem to find it.
Can anyone confirm that the TFS SDK does not provide the necessary methods to visualize an item's history or point me in the right direction if it does?