Quantcast
Channel: Build Version Increment Add-In Visual Studio
Viewing all articles
Browse latest Browse all 131

New Post: Visual Studio 2012

$
0
0
I managed to get it working in the german version of VS 2012. As FlameGod mentioned, the tools menu item remains "Tools" instead of "Extras".
Inside "Qreed/Visual Studio/VSMenu.cs", I had to change this
CommandBarControl toolsControl = menuBarCommandBar.Controls[ToolsMenuName];
to this
CommandBarControl toolsControl;
try 
{
    toolsControl = menuBarCommandBar.Controls[ToolsMenuName];
}
catch (Exception)
{
    _toolsMenuName = "Tools";
    toolsControl = menuBarCommandBar.Controls[ToolsMenuName];
}
This way it should work for other localized versions with the same behavior as the german one.

Viewing all articles
Browse latest Browse all 131

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>