无法加载程序集 .NET 4.0
每当我构建 Web 解决方案时,我都会收到此错误:
Could not load file or assembly 'dotless.Core, Version=0.0.0.0, Culture=neutral, PublicKeyToken=96b446c9e63eae34' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))
我在 Windows 7 上有带有 .NET 4.0 的 VS 2010。
dll 位于 Web 应用程序的 Bin 文件夹内。
有什么建议吗?
谢谢。
whenever I build my web solution I get this error :
Could not load file or assembly 'dotless.Core, Version=0.0.0.0, Culture=neutral, PublicKeyToken=96b446c9e63eae34' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))
I have VS 2010 with .NET 4.0 on Windows 7.
The dlls are located inside the Bin folder of the Web Application.
Any suggestions?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我删除了以下位置的临时 ASP.NET 文件:
C:\users\username\AppData\Local\Temp\Temporary ASP.NET Files\
并且它有效。
I deleted temporary asp.net files in :
C:\users\username\AppData\Local\Temp\Temporary ASP.NET Files\
And it worked.
有同样的问题!我发现您需要为 win7/x86/x64 使用不同的位置
清除项目的临时框架文件:
对于Windows 7,路径为:
对于路径中带有“Framework”的 64 位系统,完整路径为:
在这里找到解决方案
had the same problem! I found that you need to use a different location for win7/x86/x64
Clear out the temporary framework files for your project in:
For Windows 7, the path is:
For 64 bit systems with 'Framework' in the path the full path is:
Found the solution here
你是从 IIS 运行这个吗?如果是这样,请检查为您的站点选择的框架版本。
Are you running this from IIS? If so check the framework version that is selected for your site.