我一直在开发VS2010中的一个应用程序,并将其编译为.NET 4.0作为目标框架.将库集成到我的应用程序中后,当我尝试编译时收到以下错误信息:
Mixed mode assembly is built against version ‘v1.1.4322’ of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.
该库在.NET 3.5下工作正常,但是当我将目标框架更改为.NET 3.5时,我的所有.resx文件都会收到以下错误:
Error 1 Object reference not set to an instance of an object.
我试过ctrl-h版本= 4.0.0.0到版本= 3.5.0.0,但似乎不起作用.有什么我可以做其他创建一个新的应用程序吗?
解决方法
您应该可以通过app.Config中的配置设置使其工作.
只需将useLegacyV2RuntimeActivationPolicy =“true”标志添加到您的appConfig in the startup section.这将导致.NET 4运行时处理较旧的混合模式程序集.