Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to compile Mono with vb.net support

Tags:

vb.net

mono

I've downloaded latest source from mono project, compiled it and everything works (c# projects, mod_mono, xsp) except vb.net. Vbnc, mono's vb.net compiler does not exist after compiling mono from source.

This is on CentOS 5, on Ubuntu 10.04 I installed mono packages via apt-get and vb.net just works.

What am I missing, or how to get vb.net support?

like image 251
Vnuk Avatar asked Oct 15 '22 05:10

Vnuk


1 Answers

Mono's VB.Net support is in a separate module.

Either download the 'mono-basic' tarball: http://ftp.novell.com/pub/mono/sources-stable/

or get it directly from SVN: http://anonsvn.mono-project.com/viewvc/trunk/mono-basic/

or you can simply copy over what you need from a working system, like vbnc.exe and Microsoft.VisualBasic.dll.

like image 64
jpobst Avatar answered Dec 21 '22 01:12

jpobst