I have a major problem with project configurations. Everything started when I wanted to add new solution configuration (named \"Dev_WithSource\") based on existing \"De
I know this is an old thread, but this was the answer for me:
In the Configuration Manager, select "Edit..." in the "Configuration" column for each project (not via the dropdown named Active solution configuration) that has configurations you want to remove.
In the dialog that pops up, mark each unwanted configuration and select "Remove".
Copied from How do I remove a project configuration in Visual Studio 2008?
Access the configuration manager in one of two ways:
Build
> Configuration Manager...
Configuration Manager...
In the configuration manager dialog under Active solution configuration:
choose <Edit...>
from the drop down.
A dialog opens showing all the configurations for your solution. Here you can select and click the Remove
button.
Let's suppose you want to remove "Release" configuration from the entire solution and the projects. So, first you go to Tools -> Nuget Package Manager -> Package Manager Console. From that console use the following command to remove the build from all the projects in the solution :
Get-Project -All | Foreach { $_.ConfigurationMAnager.DeleteConfigurationRow("Release") }
Then you remove it solution-wise as explained by Mike Grimm.
You need to remove the configuration from the solution AND the project. From the Configuration Manager:
In Visual Studio for MAC -