Where are the settings for several launch projects stored in a saved solution?

I have a Visual Studio solution containing several console application projects, and used the solution property pages to launch both of them when debugging. For some reason, this option is not saved in the source code, so when I check the solution on another computer, it must be configured again.

Where is this information stored and how can it be added to version control?

+4
source share
3 answers

I believe that it is in the Visual Studio * .suo user interface settings file. By default, this file is hidden. Most source code providers ignore this file by default because it stores location-specific paths.

+3
source

You can install the SwitchStartupProject extension. This will create a file called YourSolution.startup.suo containing startup projects that you can check in the original control.

See also their wiki for setup instructions and other information.

+3
source

According to @ dan-gpd's answer, please use the following updated extension: SwitchStartupProject for VS 2019

0
source

Source: https://habr.com/ru/post/1303201/


All Articles