Using EnvDTE I have created a solution with a single project and two platforms, Win32 and x64.
Later I open the same solution and add another project, and add the x64 platform to it using proj.ConfigurationManager.addPlatform("x64","Win32",TRUE)
However, within the main ConfigurationManager, all SolutionContexts of the new project have their platform set to Win32.
How do I set this correctly using the API?
Thanks