In the properties of the Visual Studio project, how to make "All configurations" selected by default instead of "Active",

When I change project properties in Visual Studio, most often I need to change the selected configuration to All Configurations before making any changes. Is there a way for me to make All Configurations selected by default every time I enter the project properties window? It’s a little annoying to make a bunch of changes to the project’s settings just to understand that you need to make the same changes to your other configurations because you forgot to select All Configurations at the beginning.

See red circle

+6
source share
1 answer

The properties window will always be open based on the Current Active Solution Configuration ..

One manual workaround I could think of: In .vcxproj properties are set under the PropertyGroup xml tag. There will be one for Release .. You can copy the paste of the same ...

Example:

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <LinkIncremental>false</LinkIncremental> <TargetName>MyCustomTargetName</TargetName> </PropertyGroup> 
0
source

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


All Articles