> If somebody can tell we what options to use with csc to produce such > binaries, I can have a look at implementing the support in mono to load > such non-standard heaps.
There is no specific option, but there is some pattern to reproduce this. Something like this: It's necessary to have at least two source files. Then: 1) csc -out:bin.exe -debug+ -optimize- -incremental+ a.cs b.cs 2) touch a.cs 3) csc -out:bin.exe -debug+ -optimize- -incremental+ a.cs b.cs Sergey _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
