错误 Microsoft.VJSharp.VJSharpCodeProvide

发布于 2024-12-06 18:04:50 字数 218 浏览 0 评论 0 原文

我在我们的服务器中安装了 Visual Studio 2008 并尝试在服务器上运行我们的项目,但出现此错误 无法找到 CodeDom 提供程序类型“Microsoft.VJSharp.VJSharpCodeProvider、VJSharpCodeProvider、Version=2.0.0.0、Culture=neutral、PublicKeyToken=b03f5f7f11d50a3a”。 你知道我的问题是什么吗?

I installed visual studio 2008 in our server and tried to run our proejct on the server but i got this error
The CodeDom provider type "Microsoft.VJSharp.VJSharpCodeProvider, VJSharpCodeProvider, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" could not be located.
Do you have any idea what is my problem?

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

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

发布评论

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

评论(3

↘紸啶 2024-12-13 18:04:50

J# 支持程序集不包含在 .NET 中,它是一个 单独下载

The J# support assemblies are not included in .NET, it is a separate download.

苦妄 2024-12-13 18:04:50

在 Visual Studio 2010 中,除了安装 Microsoft Visual J# 版本 2.0 可再发行组件包,将以下内容添加到主 标记内的 Web.config 似乎还需要:

  <system.codedom>
    <compilers>
      <compiler language="vj#;vjs;vjsharp" extension=".jsl;.java" type="Microsoft.VJSharp.VJSharpCodeProvider, VJSharpCodeProvider, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"></compiler>
    </compilers>
  </system.codedom>

In Visual Studio 2010, in addition to installing Microsoft Visual J# Version 2.0 Redistributable Package, adding the following to Web.config within the main <configuration> tag seemed to also be required:

  <system.codedom>
    <compilers>
      <compiler language="vj#;vjs;vjsharp" extension=".jsl;.java" type="Microsoft.VJSharp.VJSharpCodeProvider, VJSharpCodeProvider, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"></compiler>
    </compilers>
  </system.codedom>
聆听风音 2024-12-13 18:04:50

您的项目可能包含一些 Java 相关文件,因此可能会出现此错误,

参考:- http://blogs.telerik.com/aspnet-ajax/posts/07-12-02/the-codedom-provider-type-microsoft-vjsharp-vjsharpcodeprovider-could-not-be- located。 aspx

还可以手动查找“JSON”或java文件,如果不需要可以删除。

It may be your project may include some Java related files and due to it this error can come,

Ref :- http://blogs.telerik.com/aspnet-ajax/posts/07-12-02/the-codedom-provider-type-microsoft-vjsharp-vjsharpcodeprovider-could-not-be-located.aspx

can also manually find "JSON" or java files and can delete it if not need.

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