asp.net - Mono VBNC crashes for all VB.NET pages -


i've written vb.net forms site in visual studio targeting asp.net v.3 , have gotten work on 1 of ubuntu machines using mono , it's vbnc compiler.

however, on fresh install of ubuntu, after installing necessary mono packages (including latest version of both runtime , compiler, same error every time declare page's language vb:

server error in '/' application  compilation error  description: error compiling resource required service request. review source file , modify fix error.  compiler error message: vbnc_crash: visual basic.net compiler version 0.0.0.5943 copyright (c) 2004-2010 rolf bjarne kvinge. rights reserved. error : vbnc99999: unexpected error: exception thrown type initializer mono.cecil.baseassemblyresolver @ mono.cecil.defaultassemblyresolver..ctor () [0x00000] in <filename unknown>:0 @ vbnc.compiler.get_assemblyresolver () [0x00000] in <filename unknown>:0 @ vbnc.typemanager.loadassembly (system.string filename, system.string& fullpath) [0x00000] in <filename unknown>:0 @ vbnc.typemanager.loadreferencedassemblies () [0x00000] in <filename unknown>:0 @ vbnc.typemanager.loadreferenced () [0x00000] in <filename unknown>:0 @ vbnc.compiler.compile () [0x00000] in <filename unknown>:0  compilation took 00:00:00.2333320  /default.aspx version information: mono runtime version: 2.10.8.1 (debian 2.10.8.1-1ubuntu2.2); asp.net version: 2.0.50727.1433 

i've tried can imagine - installing necessary packages (including mono-complete) , making sure everything's updated. bothers me page (even hello world) <%@ page language="vb" %> causes compiler crash. page <%@ page language="c#" %> works fine.

what missing here?


Comments