Re: [Mono-dev] Installing policy file in the GAC?

2008-03-05 Thread Michi Henning
Michi Henning wrote: > But how can the install script find out where Mono is installed? Is there > any command I can use to get at the Mono installation directory? Never mind, I figured it out. Thanks, Michi. ___ Mono-devel-list mailing list Mono-devel-

[Mono-dev] Host offer

2008-03-05 Thread Sebi Onofrei
Hello everyone, I bought some time ago a host / domain and I have no time at the moment to use it. So, can you use it for mirroring purposes? Total disk space: 5Gb Per month traffic limit: 250Gb hosted by godaddy I would really like to set-up some sort of mirroring there, even with apt / y

[Mono-dev] Mono 1.9.0 Preview 4 is out!!

2008-03-05 Thread Thomas Wiest
Hey Everyone, We've just released Mono 1.9.0 Preview 4 today! Please help us out by giving it a try with your applications. As always, you can get the preview releases here: http://mono.ximian.com/monobuild/preview/download-preview/ Please report any bugs that you may find using our Bugs pag

Re: [Mono-dev] Installing policy file in the GAC?

2008-03-05 Thread Carlos Alberto Cortez
> > gacutil won't install a policy file in the GAC because the policy file isn't > an assembly. So, obviously, I have to copy it there from the install script. > But how can the install script find out where Mono is installed? Is there > any command I can use to get at the Mono installation dire

[Mono-dev] Installing policy file in the GAC?

2008-03-05 Thread Michi Henning
Hi, I'm writing an install script that places an assembly into the GAC using gacutil. However, with the assembly, I also need to install a policy file to control backward compatibility with previous version. I know that the policy file needs to go into the lib/mono/gac directory. But how do I get

Re: [Mono-dev] Possible bug in r97246 - trunk/mcs/class/System.Drawing/System.Drawing

2008-03-05 Thread Ivan N. Zlatev
I will look into this tomorrow, cheers. On Tue, Mar 4, 2008 at 9:40 AM, Andreas Nahr <[EMAIL PROTECTED]> wrote: > The change in r97246 is likely buggy, because the comparison is now done on > the current locale but should likely be ordinalIgnoreCase or > InvariantIgnoreCase. > > Happy Hacking >

Re: [Mono-dev] NUnit in Mono.

2008-03-05 Thread Leszek Ciesielski
On Tue, Dec 18, 2007 at 5:07 AM, Charlie Poole <[EMAIL PROTECTED]> wrote: > Hi Miguel, > > Apparently, nobody else remembers either. :-) > > I suggest upgrading to 2.4.x if possible, and I'll take on any > bug fixes to NUnit needed to make it happen. > > Charlie > > > > -Original Message--

Re: [Mono-dev] Interop with Native Libraries Question

2008-03-05 Thread Jonathan Pryor
On Wed, 2008-03-05 at 12:09 +0200, Sebi Onofrei wrote: > I have a library from which I have to use some methods which is > written in C++. First, make sure the C++ methods are declared `extern "C"`. > The method I need to correctly translate is this: > integer method_name(const void* a_handle, ch

[Mono-dev] Interop with Native Libraries Question

2008-03-05 Thread Sebi Onofrei
Hello everyone. Please help me translating one function in the correct way I have a library from which I have to use some methods which is written in C++. The method I need to correctly translate is this: *integer method_name(const void* a_handle, char* name, int* length)* Now, what I tried