[Mono-dev] mono.cecil

2010-12-08 Thread Paul F. Johnson
Hi, Mono.Cecil 0.9.4 has been released unto the world and works beautifully. Is there an eta for Mono.Cecil 1.0 and when it arrives, will it see an end to the myriad of packages bundling their own version of mono.cecil as well (e.g. monodevelop has it's own version)? TTFN Paul -- Vertraue mir,

Re: [Mono-dev] mono.cecil

2010-12-08 Thread Jb Evain
Apparently I'm still having hard times figuring out this email thing. For the record: On Wed, Dec 8, 2010 at 1:42 PM, Jb Evain jbev...@gmail.com wrote: Yes. On Wed, Dec 8, 2010 at 1:40 PM, Paul F. Johnson p...@all-the-johnsons.co.uk wrote: Hi, On Wed, Dec 8, 2010 at 1:25 PM, Paul F.

[Mono-dev] MonoDroid

2010-12-08 Thread Daniel Morgan
I seen the pretty screenshots of MonoDroid sample apps on monologue. Can I beta test MonoDroid pretty please? Or at least open the beta up to the public? I added myself to the beta many months ago but I have not gotten an invite yet. ___

Re: [Mono-dev] File not found error when using Activator.CreateInstanceFrom()

2010-12-08 Thread mike
Update: Code runs fine under .NET 2.0. Also tried statically linking the second .dll to the first which alleviated the 'file not found' exception, however I am now getting a implement type compare for 1b! message and mono crashes! Has anyone seen this!?? -- View this message in context:

Re: [Mono-dev] File not found error when using Activator.CreateInstanceFrom()

2010-12-08 Thread Rodrigo Kumpera
On Wed, Dec 8, 2010 at 12:39 PM, mike mgu...@knology.net wrote: Update: Code runs fine under .NET 2.0. Also tried statically linking the second .dll to the first which alleviated the 'file not found' exception, however I am now getting a implement type compare for 1b! message and mono

Re: [Mono-dev] News about Bug 623477

2010-12-08 Thread Rodrigo Kumpera
Well, the most appropriate behavior would be to expose a new runtime function that returns the smallest allowed stack size. Something like: --in metadata/theads.c int mono_thread_get_stack_min_size () { #if defined (PTHREAD_STACK_MIN) return PTHREAD_STACK_MIN; #else /*FIXME add more cases.

Re: [Mono-dev] (Delegate) Trampoline executed twice?

2010-12-08 Thread Rodrigo Kumpera
On Tue, Dec 7, 2010 at 10:13 AM, Martin Däumler m...@cs.tu-chemnitz.dewrote: On 07.12.10 10:54, Robert Jordan wrote: On 07.12.2010 08:52, Martin Däumler wrote: I expected a delegate trampoline to be executed only once like common JIT trampolines for a single call instruction. However,