I've found that the best way to modify machine.config is to use the XmlConfig tool and pass in the path: [WindowsFolder]\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config. But the problem arises since this installer is meant to work on both x86 and x64. The site it's installing will be set up on IIS on whatever platform is available. Which means it might be in Framework64 instead.
I've seen some guidance on how to make two different installers from the same file, but is there any way at install time to decide which file the XmlConfig will be editing? I tried using the SetProperty element, but I'm not sure what variable to use to decide and anyway I couldn't use SetProperty twice on the same property.
If that's not possible, is there some way to conditionally run the XmlConfig statement only when installing in x64 mode?