asp.net – 运行时从Microsoft.AspNet.WebApi.HelpPage版本4.0.30506编译错
发布时间:2020-05-24 02:08:01 所属栏目:asp.Net 来源:互联网
导读:当我尝试使用版本4.0.30506(不幸的是,我们绑定到这个版本的ASP.NEt Web API现在),我收到以下错误的Microsoft.AspNet.WebApi.HelpPage nuget包.我正在使用 Windows 7和.NET 4.5. Compilation ErrorDescription: An error occurred during the compilation o
|
当我尝试使用版本4.0.30506(不幸的是,我们绑定到这个版本的ASP.NEt Web API现在),我收到以下错误的Microsoft.AspNet.WebApi.HelpPage nuget包.我正在使用 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: 据我看到,我有所有正确的参考这个工作.我试图寻找一个System.Runtime程序集,因为它建议,但我找不到我的系统.我已经将声明添加到Index.cshtml的顶部,但没有任何影响. @using System @using System.Runtime 有什么建议导致这个错误? 解决方法检查你的web.config:<compilation debug="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Runtime,PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation> (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- asp.net-mvc – 如何填充mvc剃刀部分视图
- 将ASP.NET MVC4应用程序部署到GoDaddy编译器问题
- 如何在asp.net和C#中实现登录会话
- asp.net-mvc-3 – MVC3:如何在HtmlHelper扩展中以编程方式
- asp.net-mvc – ASP.NET MVC Session vs Global vs Cache
- asp-classic – 如何在经典的asp中读取文本文件
- asp.net – bing地图花钱?
- ASP.NET Master Pages等效于Java
- asp.net – 如何知道为什么IIS应用程序池被回收
- asp.net – 为什么这个JSON返回“无效的JSON原语”?
推荐文章
站长推荐
- asp.net-mvc – 使用CORS在WebAPI中将text / pla
- asp.net – 在subversion提交时忽略的文件夹
- asp.net-mvc-3 – 在控制器操作完成后使用Javasc
- asp.net – 如何连接RDLC表达式中的值?
- Asp.Net Identity – 在运行时设置CookieDomain
- asp.net-mvc-3 – 为什么会话是ASP.NET MVC应用程
- asp.net-mvc-4 – 使用MVC 4 SimpleMembership与
- asp.net – ASP .Net VNext和Owin
- asp.net-mvc – 如何缓存FileContentResult的性能
- asp.net-mvc – 在MVC应用程序中ExtensionlessUr
热点阅读
