I have a big solution with over 40 projects and 8 configurations (debug, release etc.). Is there an easy way to enable full PDB output in all projects for all configurations?
This could be done by editing all the .csproj files directly. Use a text based find and replace tool to find all <DebugType>
tags and insert the desired value.
Example: <DebugType>none</DebugType>
becomes <DebugType>full</DebugType>
.