How to get Visual Studio to open Resolve Conflicts window after a TFS Get

Visual StudioTfsVersion ControlMerge Conflict-Resolution

Visual Studio Problem Overview


When I do a Get Latest in Visual Studio, if there are conflicts, there is nothing that is displayed to me to make it obvious. Invariably I think everything is OK, do a build, and often the build works.

The onus is always on me to remember to look for conflicts, to open the Conflicts window. Is there any way to make VS get in my face, and tell me that there is now a conflict?

Visual Studio Solutions


Solution 1 - Visual Studio

You can re open the Resolve Conflicts window if you closed it by mistake from Team Explorer. Goto: Pending Changes, then from the Actions drop down, select Resolve Conflicts.

From there you can click Get All Conflicts.

Normally VS will prompt you to resolve any conflicts as soon as you do one of the following:

  • Get latest
  • Check in
  • Merge

Solution 2 - Visual Studio

Click the link I surrounded with a red contour in the Team Explorer pane.

enter image description here

And in Visual Studio 2013:

enter image description here

Solution 3 - Visual Studio

If you're coding in C# then on your Visual Studios editor, select the Tools menu, then the options submenu.

A dialog will pop up. From there select Text Editor, then select C#, then select Advanced.

Then check the box for Show live semantic errors.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionvalerieView Question on Stackoverflow
Solution 1 - Visual StudioDaveShawView Answer on Stackoverflow
Solution 2 - Visual StudiosergiolView Answer on Stackoverflow
Solution 3 - Visual StudioSoftware Is awesomeView Answer on Stackoverflow