Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p><a href="http://www.richard-banks.org/2012/06/how-to-prevent-visual-studio-2012-all.html" rel="nofollow noreferrer">Richard Banks posted</a> about a registry key for just such a tweak.</p> <h3>Visual Studio 2012 (Full)</h3> <pre><code>HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General DWORD: SuppressUppercaseConversion Value: 1 </code></pre> <p>In PowerShell, you can run this to set that registry key and the uppercase goes away.</p> <pre><code>Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1 </code></pre> <h3>Visual Studio Express 2012</h3> <p>The above registry key is not the one that will affect Visual Studio Express 2012 RC. A <a href="http://www.richard-banks.org/2012/06/how-to-prevent-visual-studio-2012-all.html#comment-510984742703194994" rel="nofollow noreferrer">comment by FormatC</a> showed up on Banks post about the key for Express. You can find that key mentioned in <a href="https://stackoverflow.com/a/10906509/48700">Mike Gleason's answer</a> or run the following PowerShell command to set it.</p> <pre><code>Set-ItemProperty -Path HKCU:\Software\Microsoft\VSWinExpress\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1 </code></pre> <h3>Visual Studio Express 2012 for Web</h3> <pre><code>Set-ItemProperty -Path HKCU:\Software\Microsoft\VWDExpress\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1 </code></pre> <h3>Visual Studio 2013</h3> <p>Replace <code>11.0</code> with <code>12.0</code> in the registry keys above.</p> <h3>Visual Studio 2015 Developer Preview</h3> <p>Replace <code>11.0</code> with <code>14.0</code> in the registry keys above.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload