2012/1/30 xepharalon <[email protected]>: > I was having trouble with MPI.NET in mono, so I started trying to get MPAPI > to work... still no success. > > The error I get is from mono 2.0 when trying to compile my program is: > > Program.cs(5,7): error CS0246: The type or namespace name `MPAPI' could not > be found. > Are you missing a using directive or an assembly reference? > Compilation failed: 1 error(s), 0 warnings
It sounds very much like your problem is what the error message states: missing reference. If you compile on the command line, you use the -r (-reference) flag to point to required assemblies. /Oskar _______________________________________________ Mono-devel-list mailing list [email protected] http://lists.ximian.com/mailman/listinfo/mono-devel-list
