Does VS2012 return to the normal TFS Validation window?

VS2012 seems to remove the popup window for TFS checks that was in VS2010. Now it seems to grab the command explorer tab in the sidebar and bury important things - for example, which files I changed. Is there a way to return to the regular popup for registering with VS2012?

+82
tfs visual-studio-2012
Aug 30 '12 at 20:19
source share
5 answers

Another method is to use Powerivity Tools . This extension adds Windows shell integration, so you can execute most of your TFS commands directly from Windows without even opening Visual Studio. Power Tools uses old-style windows when used from a Windows shell.

+3
Oct 24 '13 at 14:16
source share

For me, the best solution is based on iSid's answer: add an external tool that produces an old dialog. You can do this from Visual Studio: TOOLS → External Tools ... → Add with the following values:

Title: Checkin (or any name that should appear on the menu)
Command: C: \ Program Files (x86) \ Microsoft Visual Studio 11.0 \ Common7 \ IDE \ TF.exe (this is the default VS installation location for Windows x64)
Arguments: checkin
Start Directory: $ (SolutionDir)

Here is a screenshot:
External Tools Dialog

You can call from TOOLS → Checkin (or even assign a key combination for Tools.ExternalCommand *, as described here ) and enjoy the old goodies with the new style:
Checkin dialog

Please note that this will not work if the solution does not open due to the $(SolutionDir) variable. To get around this, you can hardcode the path to your workspace.

Alternatively, tf.exe can be called with the "shelve" argument, which displays the old-style shelving dialog.

+89
Jan 09 '13 at 12:02
source share

Use the tf checkin command from the Visual Studio command prompt and you will get the same old check window.

+20
Nov 12
source share

While the Pending Changes window is merged into Team Explorer , Solution Explorer allows you to filter what is pending. In addition, the Open Files filter can be applied. When the Pending Changes filter is applied, all or some of the files can be selected and right-clicked, and then it is possible to perform a check. This command is directly related to the Team Explorer in Pending Changes view. See below...

Solution Explorer - Pending Changes Filter

+12
Aug 30 2018-12-12T00:
source share

I think the simplest solution is to simply connect the Team Explorer tab as tabs (using the context menu). Thus, this will be equivalent to a popup dialog.

Right-click the tab and select

+4
Aug 26 '13 at 6:42 on
source share



All Articles