In order to debug Web API projects in Visual Studio 2013, I had to set output path for the Debug configuration to bin\
(meaning files end up in {ProjectName}\bin
relative to the solution root folder) as can be seen from some of the answers here.
But now I face the issue that we have used the path bin\{ConfigurationName}
in several places in our build server setup. I would very much like to unify the setup for Debug and the other Visual Studio configurations.
Therefore my question is: do you know of any problematic consequences of unifying the output folder for all configurations to be bin\
, leading to folder structure {ProjectName}\bin
?
If you do, is there any way to debug a Web API project without changing the output folder from bin\Debug\
?