Re: [Mono-dev] Unable to build current master on Linux

2011-05-23 Thread Konrad M . Kruczyński
Hi Leszek, I'm trying to build current master branch on Linux, today it keeps failing with (...) I can confirm that. Using git bisect I was able to find that first time compilation has been broken after 5c82e32b676 commit, i.e. using new versions of functions to moving and zeroing memory.

Re: [Mono-dev] Unable to build current master on Linux

2011-05-23 Thread Konrad M . Kruczyński
Hello again, I'm trying to build current master branch on Linux, today it keeps failing with (...) I just pulled from origin and discovered that it is fixed now by revert by grendello. And that's the reason, reverting gc.c did not fix build - it was just a coincidence. Sorry to bother you,

[Mono-list] Link against a DLL? (System.TypeLoadException)

2011-05-23 Thread Doug
I'm having some trouble compiling a DLL and linking against it. Should be trivial, so I must be doing something wrong; I keep getting the error: ** (./a.out:27535): WARNING **: The class HelloLib.Hello could not be loaded, used in a, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null

Re: [Mono-list] Link against a DLL? (System.TypeLoadException)

2011-05-23 Thread Jacek Rużyczka
Am Montag 23 Mai 2011, 09:58:34 schrieb Doug: I'm having some trouble compiling a DLL and linking against it. Should be trivial, so I must be doing something wrong; I keep getting the error: ** (./a.out:27535): WARNING **: The class HelloLib.Hello could not be loaded, used in a,

Re: [Mono-list] Link against a DLL? (System.TypeLoadException)

2011-05-23 Thread Alan
There's no need to put anything into the GAC. If both assemblies are in the same directory it should work fine. Are the assemblies still in the same directory when you run the application? 2011/5/23 Jacek Rużyczka stacheldr...@interia.pl: Am Montag 23 Mai 2011, 09:58:34 schrieb Doug: I'm having

Re: [Mono-list] Link against a DLL? (System.TypeLoadException)

2011-05-23 Thread Robert Jordan
On 23.05.2011 08:58, Doug wrote: I'm having some trouble compiling a DLL and linking against it. Should be trivial, so I must be doing something wrong; I keep getting the error: ** (./a.out:27535): WARNING **: The class HelloLib.Hello could not be loaded, used in a, Version=1.0.0.0,

Re: [Mono-list] Reflector alternative

2011-05-23 Thread Steve Lessard
Yes I would like to get a copy of Reflector 6.7.0.3. Could you please share it? From: Ivan Zlatev i...@ivanz.com To: mono-list@lists.ximian.com Sent: Saturday, May 21, 2011 10:50 AM Subject: Re: [Mono-list] Reflector alternative I have Reflector 6.7.0.3 which

Re: [Mono-list] Reflector alternative

2011-05-23 Thread Ivan Zlatev
Here - http://ivanz.com/files/tmp/Reflector.zip Kind Regards, Ivan Zlatev http://ivanz.com LinkedIn: http://linkedin.com/in/ivanzlatev Twitter: http://twitter.com/ivanzlatev On Mon, May 23, 2011 at 6:17 PM, Steve Lessard s_less...@yahoo.com wrote: Yes I would like to get a copy of

[Mono-list] FW: How to use the method Gdk.Window.AddFilter ???

2011-05-23 Thread Frank Gutierrez Domínguez
From: Frank Gutierrez Domínguez [mailto:f.gutier...@lab.matcom.uh.cu] Sent: Monday, May 23, 2011 3:15 PM To: 'gtk-sharp-l...@lists.ximian.com' Subject: How to use the method Gdk.Window.AddFilter ??? Hello everybody: I’m developing a custom widget in Gtk# and I need to capture the

Re: [Mono-list] Link against a DLL? (System.TypeLoadException)

2011-05-23 Thread Doug
Awesome, thank you. Yes, fixed by changing the compile line of the library to: gmcs /debug- /target:library AssemblyInfo.cs hello.cs /out:b.dll ~ Doug. On Mon, May 23, 2011 at 6:53 PM, Robert Jordan robe...@gmx.net wrote: On 23.05.2011 08:58, Doug wrote: I'm having some trouble compiling a