我可以将 Glimpse 与 .net 2.0 或 3.5 项目一起使用吗?
根据他们的 NuGet 页面,Glimpse 适用于 ASP.net 4.0。但是可以用2.0或者3.5吗?
我尝试使用 2.0 项目并收到此错误:
无法加载文件或程序集 “Glimpse.Core”或其之一 依赖关系。该程序集已构建 通过比当前更新的运行时 已加载运行时且无法加载。
According to their NuGet page, Glimpse is for ASP.net 4.0. But is it possible to use it with 2.0 or 3.5?
I tried with a 2.0 project and got this error :
Could not load file or assembly
'Glimpse.Core' or one of its
dependencies. This assembly is built
by a runtime newer than the currently
loaded runtime and cannot be loaded.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.NET 2.0到3.5都使用2.0 CLR,但4.0没有。因此,使用 .NET 4.0 编译的程序集只能由 4.0 CLR 加载。
您可以尝试获取源代码并使用 .NET 2.0 重新编译它,自然希望它们不使用任何 .NET 4 功能(但是,查看项目描述,我对此表示怀疑)。
他们有一个 GitHub 存储库: https://github.com/Glimpse/Glimpse
.NET 2.0 to 3.5 all use the 2.0 CLR, but 4.0 does not. As such, an assembly compiled using .NET 4.0 can only be loaded by the 4.0 CLR.
You could try getting the source and recompiling it using .NET 2.0 and naturally hoping they don't use any .NET 4 features (however, looking at the project description, I doubt it).
They have a GitHub repo is there: https://github.com/Glimpse/Glimpse