I have a Visual Studio 2010 project that targets .NET Framework 2.0 and has "Generate serialization assembly" set to "On". When built I noticed the *.XmlSerializers.dll assembly generated targets .NET 4.0 (I used ildasm.exe to check the manifest). It appears Visual Studio is still using sgen.exe for .NET 4.0 and I suspect I'd have a similar problem with resgen.exe.
I don't want to hack each project file to specify the SGenToolPath manually, so how can I get Visual Studio to always use the correct version of sgen.exe?
Note: I'm using Visual Studio 2010 on Windows 7 x64 with Windows SDK 7.1 installed and set as the current SDK version.