Category: Visual Studio
Single Click Preview in Visual Studio 2013 Solution Explorer
The single click preview is one of the cool feature in Visual Studio 2013 which lets the developers preview the file in the preview tab. This feature is available for use from Visual Studio Solution explorer as well. You can activate it by clicking the Preview Selected Items button in the Solution explorer toolbar. To disable this feature , you can click the same button…
How to Download and Install Visual Studio Code for Windows ?
This article will explain in simple steps on downloading and installing the Visual Studio Code for Windows in Windows 8.1 . How to Download and Install Visual Studio Code for Windows ? Follow the below steps to download Visual Studio Code Editor and install it on Windows PC. 1. Download Visual Studio code for Windows from http://go.microsoft.com/fwlink/?LinkID=534107 .2. This will download the VSCodeSetup.exe in the…
How to change Language Version from C# 6.0 in Visual Studio 2015 ?
There are times when you are developing .NET Project in Visual Studio 2015 with C# 6.0 enabled and you might also have members in your team using Visual Studio 2013 and still want to build and run the project. How to change Language Version from C# 6.0 in Visual Studio 2015 ? You can change the C# language version from the project properties. In the…
How to Disable Browser Link in Visual Studio 2015 ?
Browser Link is one of the cool features in Visual Studio for the ASP.NET Developers. Sometimes , the web developers might want to disable this feature for various reasons. How to Disable Browser Link in Visual Studio 2015 ? There are 2 ways in which you can disable the Browser link in Visual Studio 2015. 1. Using Web.config file Just set the property vs:EnableBrowserLink value…
Using the Find combo box to do a Quick Find in the current document in Visual Studio.
Microsoft Visual Studio has an option which lets the developers to perform a quick find within the document using the Find Combobox. Using the Find combo box to do a Quick Find in the current document in Visual Studio. To use this feature, press Ctrl + D. This will position the cursor to the Find Combobox in the IDE. Type the string that you need…
How to enable Edit and Continue in Visual Studio 2012 ?
Edit and Continue is one of the interesting debugging feature in Visual Studio that lets the developers to edit the code and continue debugging even when the debugger breaks. How to enable Edit and Continue in Visual Studio 2012 ? Follow the below steps to enable Edit and Continue feature in Visual Studio 2012. 1. Open the Visual Studio Options ( Tools -> Options )…
XAML Designer options in Visual Studio
Visual Studio 2015 has an interesting feature in the IDE that is related to the XAML Designer . As a Developer , you can perform the following options in the Visual Studio 2015 IDE specially on the XAML designer.1. Disable the XAML Designer.2. Set the Default document view for the XAML designer.3. Set the Split Orientation for the designer.4. Set the shortcut key for the…
How to Use Navigate to Next result in Find Symbol Results Dialog in Visual Studio 2013?
When you use the Find references shortcut (Shift + F12), you will see the references list in the Find Symbol Results Dialog in Visual Studio 2013. If you want to navigate to the next result in the Find Symbol Results Dialog, you can use the shortcut key F8 in the Symbol Results Dialog.
How to disable NPM package restore in Visual Studio 2015?
When you open a project in Microsoft Visual Studio 2015 Update 1 that contains the package.json , you will notice that the npm install process is started by default. There are times when you want to run npm install manually from the command line. How to disable NPM package restore in Visual Studio 2015? Follow the below steps to disable NPM package restore in Microsoft…
How to Set Startup Projects in Visual Studio 2012 ?
There are times when you want to set which project in your visual studio solution should be built and deployed first. You can set the startup projects in Visual Studio 2012 easily by following the below steps How to Set Startup Projects in Visual Studio 2012 ? 1. In the Visual Studio 2012 Solution explorer , select the startup project. 2. Right click and select…
Download and Install Visual Studio Code for Mac OS X
This article will explain in simple steps on downloading and installing the Visual Studio Code for Mac OS X . How to Download and Install Visual Studio Code for Mac OS X? Follow the below steps to download Visual Studio Code Editor and install it on Mac OS X. 1. Download Visual Studio code for Mac OS X from http://go.microsoft.com/fwlink/?LinkID=534106 . 2. This will download…
Writing the String to the Output Window in Visual Studio 2013
Below is a sample code snippet that demonstrates how to write a string to the Output Windows in Visual Studio 2013. Writing the String to the Output Window in Visual Studio 2013