How can I turn off Visual Studio 2013 Preview? [duplicate]
From the menu go to Tools -> Options then navigate to Environment -> Tabs and Windows and uncheck the Preview Tab checkboxes.
From the menu go to Tools -> Options then navigate to Environment -> Tabs and Windows and uncheck the Preview Tab checkboxes.
Visual Studio 2015 comes with a new shortcut, Shift+Alt+W, that wraps the current selection with a div. This shortcut leaves the text “div” selected, making it seamlessly changeable to any desired tag. This coupled with the automatic end tag replacement makes for a quick solution. UPDATE This shortcut is available in Visual Studio 2017 as … Read more
I think it’s clear from the other answers that solution files are useful and should be committed, even if they’re not used for official builds. They’re handy to have for anyone using Visual Studio features like Go To Definition/Declaration. By default, they don’t contain absolute paths or any other machine-specific artifacts. (Unfortunately, some add-in tools … Read more
Another option for preventing fiddler from chewing up your CPU is write a rule in fiddler to ignore those requests. Goto Rules > Customize Rules… find the function OnBeforeRequest and add if(oSession.oRequest.headers[“host”]==”localhost:49155″){ oSession[“ui-hide”] = “true”; } so mine looks like this: static function OnBeforeRequest(oSession: Session) { if(oSession.oRequest.headers[“host”]==”localhost:49155″){ oSession[“ui-hide”] = “true”; } } as @matrixugly pointed … Read more
I don’t know if there is a menu option, but there are keyboard shortcuts to set the zoom level. ctrl+shift+. to Zoom In ctrl+shift+, to Zoom Out
Yes! You can use the new Visual Studio for Mac, which Microsoft launched in November. Read about it here: https://msdn.microsoft.com/magazine/mt790182 Download a preview version here: https://www.visualstudio.com/vs/visual-studio-mac/
To clear the immediate window, you can use >cls, which is a predefined command alias to >Edit.ClearAll. The MSDN article lists all predefined aliases and you can define your own, too. (For VS 2010 and earlier, custom aliases are described in a separate article, though.) Scanning through, there’s a whole slew of them, some of … Read more
It’s possible that you’re not seeing all the build errors. By changing the drop down list after the “Messages” icon from “Build + Intellisense” to “Build Only”, you will be able to see errors thrown during the build that are not detected by Intellisense. See the screenshot below:
Do you want the files to save as UTF-8 because you are using special characters that would be lost in ASCII encoding? If that’s the case, then there is a VS2008 global setting in Tools > Options > Environment > Documents, named Save documents as Unicode when data cannot be saved in codepage. When this … Read more
Use a post-build action in your project, and add the commands to copy the offending DLL. The post-build action are written as a batch script. The output directory can be referenced as $(OutDir). The project directory is available as $(ProjDir). Try to use relative pathes where applicable, so that you can copy or move your … Read more