Nunit 问题 System.BadImageFormatException

问题:
Nunit 问题 System.BadImageFormatException
运行环境 nunit2.2,vs2005
解决办法:
修改 nunit-gui.exe.config 文件中的
< startup >
    
< supportedRuntime  version ="v1.1.4322"   />
    
< supportedRuntime  version ="v2.0.40607"   />
    
< supportedRuntime  version ="v1.0.3705"   />   
    
< requiredRuntime  version ="v1.0.3705"   />
< startup >
修改成
< startup >
    
< supportedRuntime  version ="Vs2005的版本号"   />  
       <supportedRuntime version="v2.0.50215" />
      <supportedRuntime version="v2.0.40607" />
       <supportedRuntime version="v1.1.4322" />
       <supportedRuntime version="v1.0.3705" /> 

         <requiredRuntime version="Vs2005的版本号" />
< startup >


ok

你可能感兴趣的:(exception)