I have created a tool that generates a solution containing multiple projects. The problem is when I open this solution up in VS the configuration build option is not set (i.e if you build the solution the projects don’t get built – they are skipped). The user has to go in and manually check the check boxes in the configuration dialog in order to have these projects build with the solution.
I am unclear as to how to automatically set this value. Where can this be set?
Thanks Andrew. It turns out my guids where all lowercase (generated by Guid.NewGuid()). This appears to confuse VS. Changing the Guid generation to Guid.NewGuid().ToString().ToUpper() fixes the problem