Visual studio.Net 2003 转成2008的问题。
我在visual stdio.NET 2003建立了一个project, 可以没有任何错误的运行,现在想把它转到visual studio.NET 2008中,结果出现了以下的错误, 请问有可能是什么原因造成的? 谢谢指点!1>------ Build started: Project: mysolver, Configuration: Debug Win32 ------
1>Compiling...
1>cl : Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release
1>cl : Command line error D8016 : '/EHs' and '/clr' command-line options are incompatible
1>Build log was saved at "file://c:\Users\tow\Desktop\Scheduler\Debug\BuildLog.htm"
1>mysolver - 1 error(s), 1 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== --------------------编程问答-------------------- You need to compile with /EHa instead of /EHs --------------------编程问答-------------------- 要是代码不多就重写吧,还可以熟悉下新系统。 --------------------编程问答-------------------- 1>mysolver - 1 error(s), 1 warning(s)
自己看下转成2008后那个错在哪然后具体解决下就行了吧 --------------------编程问答-------------------- 摘录MSDN中"/clr(公共语言运行库编译)"里的一段:
/clr 暗指 /EHa,不允许其他 /EH 选项与 /clr 一起使用。有关更多信息,请参见 /EH(异常处理模型)。
补充:.NET技术 , VC.NET