use .Net 2.0 dll in .net 4.0 wpf application
问题 I am trying to add a reference to a .Net 2.0 DLL in a WPF application that is targeted to the .Net 4 Framework. I added <startup useLegacyV2RuntimeActivationPolicy="true"> to the app.config file. The WPF app builds fine, but gets a BadImageFormatException at Runtime when trying to access the .Net 2.0 DLL. "An attempt was made to load a program with an incorrect format" This works with a new test WPF project, but does not work on my app. My app uses Entity Framework and MEF. Could these