So, how is this happening when Visual Studio itself is running on .NET 4? The answer is reference assemblies!
Reference assemblies are metadata-only assemblies that have method bodies and non-public members stripped out in order to make them more compact. As such, they can’t be loaded for execution by the CLR. However, the multi-targeting infrastructure is able to load and unload these assemblies as needed and has all the information it needs to provide target-aware reflection.
Read more: Christy's tidbits