Json.NET + VerificationException 操作可能会破坏运行时的稳定性

发布于 2024-11-06 08:20:12 字数 461 浏览 0 评论 0 原文

我收到“操作可能会破坏运行时异常的稳定性”。我仔细观察了一下,看起来异常与运行时加载的冲突程序集有关。 因此,这里有一些

  1. 相同的源代码在我同事的机器上工作的事情。
  2. 我查看并搜索了对 NewtonSoft.Json.dll 的每个引用,它似乎来自同一个程序集。 (我认为这不会成为问题,因为它在其他人的机器上工作)。
  3. 我正在使用 Raven,它引用了 NewtonSoft,但它没有在服务器端使用,仅在客户端/ silverlight 端使用。另外为了兼容,我引用了 raven 引用的同一版本的 Newtonsoft。

现在,问题可能是我在机器中安装的某些东西影响了这一点。一些运行时/SP安装等。 有没有办法调试/弄清楚这里发生了什么。当应用程序运行时,我查看并搜索了 NewtonSoft.dll,它在临时 asp.net 文件中获得了正确的版本。 ?

任何帮助将不胜感激。我不想安装运行时。

I am getting the "Operation could destablize the runtime exception". I goggled quite a bit, looks like exception has to do with conflicting assemblies being loaded at runtime.
So, here are couple of things

  1. the same source code works in my colleagues machine.
  2. I looked and searched for each reference to NewtonSoft.Json.dll and it seems like its coming from a same assembly. (I think this would not be a problem as it is working in other people machine).
  3. I am using Raven which references NewtonSoft, but its not being used on the server side only on the client / silverlight side. Also to be compatible I am referencing to the same version of Newtonsoft that raven is referencing to.

Now, the problem might be something I installed in the machine that's affecting this. some runtime / SP install etc.
Is there a way to debug / figure out what's happening here. I looked and searched for NewtonSoft.dll when the app runs and it gets right version in the temporary asp.net files. ?

Any help could be greatly appreciated. I don't want to go through installing my runtime.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

暗地喜欢 2024-11-13 08:20:12

当您激活 Visual Studio Ultimate 和 IntelliTrace 时,可能会发生此异常。

尝试将 Newtonsoft.dll 添加到 IntelliTrace 忽略列表中:

  • 工具 ->选项-> IntelliTrace->模块
  • 添加-> Newtonsoft。

This exception can occur when you have Visual Studio Ultimate and IntelliTrace activated.

Try to add Newtonsoft.dll on IntelliTrace ignore list:

  • Tools -> Options -> IntelliTrace -> Modules
  • Add -> Newtonsoft.
谈情不如逗狗 2024-11-13 08:20:12

这是一个已知问题。

您应该能够通过删除对 JSON .NET 库的所有引用并将它们再次添加到项目中来解决此问题。

另请参阅:

http://json.codeplex.com/workitem/20624

JSON.Net 抛出System.Security.VerificationException:操作可能会破坏运行时的稳定性

This is a known issue.

You should be able to fix this by removing all references to the JSON .NET library and adding them again to the projects.

See also:

http://json.codeplex.com/workitem/20624

JSON.Net throwing System.Security.VerificationException: Operation could destabilize the runtime

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