Error Microsoft.VJSharp.VJSharpCodeProvide

牧云@^-^@ 提交于 2019-12-22 14:37:35

问题


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?


回答1:


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




回答2:


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>



回答3:


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.



来源:https://stackoverflow.com/questions/7560321/error-microsoft-vjsharp-vjsharpcodeprovide

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!