Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Tools > Create GUID removed in Visual Studio 2012?

In Visual Studio 2010, there was a Create GUID entry in the Tools menu. I used it all the time for SharePoint Development.

Has Tools > Create GUID been removed in Visual Studio 2012? I don't see it and resorted to Powershell [System.Guid]::NewGuid().ToString()

like image 398
Tom Resing Avatar asked Dec 14 '12 16:12

Tom Resing


1 Answers

No it's there... at least it's available in Visual Studio 2012 Ultimate.

If missing try adding it via Tools -> External Tools and add:

%Installation Path%\Microsoft Visual Studio 11.0\Common7\Tools\guidgen.exe

EDIT: It's probably installed with Visual C++.

like image 70
Adil Avatar answered Sep 16 '22 15:09

Adil