I have got a VS2010 solution which creates several assemblies for .NET 2.0.
This also includes satellite assemblies.
When I create everything with VS2010 it is fine. But I have a XP machine working as a build server using MSBuild. The satellite assemblies created from there are not recognized. Looking with ILDASM I see the VS2010 create metadata version 2 while MSBuild creates version 4. I guess that means VS2010 creates the correct .NET2 versions while MSBuild creates only the main assemblies for .NET2 but the satellite assemblies are .NET4.
I already know about this topic from here: What decides the target framework version of a satellite assembly?
But that does not work for me.
Any ideas how I can make the build server create .NET2 satellite assemblies? I might be able to enhance my script if I know how to call AL.exe properly.