Things To Do After Installing Visual Studio Express 12
Here is a list of recommended settings to configure immediately after installing Visual Studio Express 2012 (or Visual Web Developer).
-
Environment > Documents > Auto-load changes Enable this option. By checking this, you can modify files outside of Visual Studio, and the editor will automatically reload them without constantly prompting you for confirmation.
-
Environment > Tabs and Windows > Preview Tab > Allow new files to be opened in the preview tab Uncheck this option. Disabling the preview tab prevents files from opening temporarily when you single-click them in the Solution Explorer.
-
Projects and Solutions > Track Active Item in Solution Explorer Enable this setting. This automatically highlights the file you are currently editing within the Solution Explorer, making it much easier to figure out where you are in the project structure.
-
Text Editor > All Languages > Word wrap Enable word wrap so you don’t have to scroll horizontally to read long lines of code.
-
Text Editor > CSS > Formatting > Compact Rules Enable this. This formatting option keeps your CSS rules compact, which makes the file physically smaller and easier to scan.
-
Text Editor > HTML > Miscellaneous > Auto ID Uncheck the “Auto ID elements on paste in Design view” option. By default, when you copy and paste HTML code, Visual Studio will automatically change the IDs to prevent duplicates. However, this is extremely frustrating if you are pasting blocks of HTML inside conditional statements (like an
if/elseblock) where the duplicate IDs are intentional. -
Package Manager > General Browse and copy the location of your local NuGet cache folder. Add this path as a new Package Source. This allows you to install NuGet packages completely offline, using versions you’ve previously downloaded!
Thanks for reading my post! 