Showing posts with label visual studio. Show all posts
Showing posts with label visual studio. Show all posts

Saturday, June 06, 2020

Visual studio: start mutiple projects

There is a nice tool that allows you to define combination of multiple projects that should be started together when running things from Visual studio, the extension is called SwitchStartupProject and can be found here:

Thursday, March 10, 2016

Visual Studio sql hide design

To have visual studio show SQL and now show the design panel, follow the following:
  1. Right-click on the file, and select Open With...
  2. Then select Microsoft SQL Server Data Tools, T-SQL Editor,
  3. Click on Set as Default
  4. Click OK.

From question in Stackoverflow

Friday, March 04, 2016

Visual studio: Enable debug of external code

  1.  Go to the Debug-->Exceptions dialog, check Common Language Runtime Exceptions, and check the check box in the Thrown column;
  2.  Go to the Tools-->Options-->Debugging and uncheck the Enable Just My Code (Managed Only) check box.

Source