Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is one project in my solution bold

Tags:

In my solution, I have one project whose name is bold.

enter image description here

Why is ErrorHandlerLibrary bold?

like image 977
jth41 Avatar asked Jun 16 '14 17:06

jth41


2 Answers

This is because for whatever reasons, for debugging or release purposes, Visual Studio has chosen that project as your Startup Project. These projects run automatically when starting the Visual Studio debugger. This also means that you have the option to run multiple projects when the debugger starts. To read more, check Microsoft's documentation.

like image 98
Archer Avatar answered Oct 05 '22 18:10

Archer


The project that is started when starting the debugger is emboldened. If you want to change it, you can right click and set a different as the start-up project

like image 22
Rowland Shaw Avatar answered Oct 05 '22 18:10

Rowland Shaw