- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试使用 Microsoft.AspNet.WebApi.HelpPage nuget 包的 4.0.30506 版(不幸的是,我们现在与此版本的 ASP.NET Web API 绑定(bind))时出现以下错误。我正在使用 Windows 7 和 .NET 4.5。
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: CS0012: The type 'System.Object' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
Source Error:
Line 11:
Line 12: // Group APIs by controller
Line 13: ILookup<string, ApiDescription> apiGroups = Model.ToLookup(api => api.ActionDescriptor.ControllerDescriptor.ControllerName);
Line 14: }
Line 15:
@using System
@using System.Runtime
最佳答案
检查您的 web.config:
<compilation debug="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation>
关于asp.net - 来自 Microsoft.AspNet.WebApi.HelpPage 版本 4.0.30506 的运行时编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20397623/
我一直在使用 ASP.net HelpPages 为我的 ApiControllers 生成文档。现在帮助页面的索引显示 Controller 的名称/路径和 Controller 的描述。 CONT
最近一次例行更新破坏了我的一个项目的编译。出现了许多错误,包括:Areas\HelpPage\ApiDescriptionExtensions.cs 找不到。在进行项目范围的搜索时,未找到对这些文件的
我正在试用新的 Hot Towel约翰爸爸的模板。它真的很灵巧,但我在让它与我习惯使用的 Web API 协作时遇到了一些困难。 我能够解决路由问题,但我仍然无法获得 Microsoft.AspNet
我正在为使用 OData 的 Web API 使用默认的 MVC 帮助页面,它工作得很好,但如果我继承 ODataController 而不是 ApiController,则不会生成帮助页面。它显示空
使用新的 webapi 2.1 位。由于某种原因,当我打开帮助页面时,没有显示任何属性的描述详细信息,例如 /// /// Some summary that shows correct ///
我按照此处的说明将 webApi.HelpPage 区域和 View 添加到使用 structureMap 的现有项目中 - 但是在访问/Help url 时: StructureMap Except
我试图让 Swashbuckle 5 使用 multipart/form-data 参数为带有 Post 请求的 ApiController 生成完整的帮助页面。该操作的帮助页面出现在浏览器中,但没有
当我尝试使用 Microsoft.AspNet.WebApi.HelpPage nuget 包的 4.0.30506 版(不幸的是,我们现在与此版本的 ASP.NET Web API 绑定(bind)
我是一名优秀的程序员,十分优秀!