我可以将 Glimpse 与 .net 2.0 或 3.5 项目一起使用吗?

发布于 2024-11-19 14:36:35 字数 270 浏览 4 评论 0原文

根据他们的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一直在等你来 2024-11-26 14:36:35

.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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文