https://bugzilla.novell.com/show_bug.cgi?id=349080
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=349080#c1 Jonathan Pryor <[EMAIL PROTECTED]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] --- Comment #1 from Jonathan Pryor <[EMAIL PROTECTED]> 2007-12-17 04:41:23 MST --- The error generated by mono is fairly self-explanetory: ** ERROR **: Method '<Module>:<CrtImplementationDetails>.DoDllLanguageSupportValidation ()' in assembly '/home/jon/tmp/CLICall/CLICall/bin/Release/CPPAssembly.dll' contains native code and mono can't run it. The assembly was probably created by Managed C++. aborting... In short, CPPAssembly.dll is a mixed-mode assembly, an assembly that contains both managed and native code. Mono cannot deal with these. You should try compiling your C++/CLI assembly with the /clr:safe flag, and if that doesn't help, see if there's a way to remove the dependency on unmanaged code. (There was with VS2003, but the VS2005 C++/CLI language is completely different.) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
