views:

199

answers:

2

I have a website sitting on a mapped network drive. The <%@ Page Language="C#"... tag in the markup files are all underlined with blue. The error I get is "could not load file or assembly 'IKVM.Runtime...." Beyond that Intelisense does not function for code inside <% %> blocks. The intelisense for the normal markup still works. Any idea's what I can do to get rid of the error and get back intelisense?

+1  A: 

IKVM is a way of running Java code on a .NET/Mono VM.

Quite why you're referencing it in your web site is really something you'd know more about than us. I suggest you back up the site, then find the reference and remove it. See if it now works - or if it breaks, you should end up with a good idea what was using it.

Jon Skeet
A: 

you can find the reference in web.config files or maybe assemblies from bin folder depend on ikvm

Trickster
There is no reference to "ikvm" in the web.config. The bin folder contains too IKVM files. IKVM.GNU.Classpath.dll and IKVM.Runtime.dll
Mr Bell