I have a VS solution with Release and Debug Configuration. Each project in the solution has different settings for Release and Debug.
Now I have added a new solution configuration named 'DedicatedSolutionConfiguration'. With this configuration I will mark some projects not to be built.
I've changed the project configuration of each project in that solution configuration to 'Debug', because I like to use these project settings for that new solution configuration. That looks like this:
However, when I now add a new Project to the solution, the project's configuration inside the new configuration is initially always set to 'Debug':
Where can I change this behavior for the solution, that new added projects use 'Release' for the new solution configuration?
Thanks for replies.