1.8 中的模块在 1.8.1 中不起作用找不到类型或命名空间名称 'Orchard'

Module from 1.8 not working in 1.8.1 The type or namespace name 'Orchard' could not be found

我在 Orchard 1.8 中创建了我的模块,在 Orchard 1.8.1 中安装它时出现错误:

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: CS0246: The type or namespace name 'Orchard' could not be found (are you missing a using directive or an assembly reference?)

Source Error:


Line 89:                 <add namespace="System.Web.Routing"/>
Line 90:                 <add namespace="System.Web.WebPages"/>
Line 91:                 <add namespace="Orchard.Mvc.Html"/>
Line 92:             </namespaces>
Line 93:         </pages>

错误是由 ajax 调用引起的。我已经检查过我使用的 jquery 与之前的版本相同。知道为什么会发生这种情况吗?

我发现了错误。它在 web.config 中,因为我是 运行 我必须添加的同一个应用程序池中的 webapi 所以 webapi 确实继承自 Orchard。所以问题根本不在版本中。