Re: [Mono-dev] Linq, Nhibernate or subsonic ?

2008-02-25 Thread DB Jobs
Hi, regarding NHibernate: I've used it in a small project cooperating with someone accustomed to it and found it very interesting but hard to learn. And once you know how to use it's object model you need another project to find out how to configure it. So, to avoid costly beginner's mistakes

[Mono-dev] MS.Build.Tasks patch to workaround 2.1 assemblies

2008-02-25 Thread Atsushi Eno
Hello, I've noticed that xbuild tries to load System.dll from 2.1 profile and will often fail to build target projects because it in general targets 2.0. The attached hacky patch is to avoid such unexpected version mismatch. (If we really need to load 2.1 System.dll in the future, building

[Mono-dev] subsonic test drive

2008-02-25 Thread Sharique uddin Ahmed Farooqui
Hi, I'm trying Subsonic http://www.subsonicproject.com/. When i compile my test web application. I get this error The nested type `ComponentModel' does not exist in the type `Northwind.System'(CS0426)] I'm using mono 1.2.6 and monodevelop 0.19. I didn't find System.ComponentModel.dll in

Re: [Mono-dev] subsonic test drive

2008-02-25 Thread Robert Jordan
Sharique uddin Ahmed Farooqui wrote: Hi, I'm trying Subsonic http://www.subsonicproject.com/. When i compile my test web application. I get this error The nested type `ComponentModel' does not exist in the type `Northwind.System'(CS0426)] I'm using mono 1.2.6 and monodevelop 0.19. This

Re: [Mono-dev] subsonic test drive

2008-02-25 Thread Joe Audette
Hi, I've been working with SubSonic myself recently and have been able to use it on Mono with MySql and PostgreSQL using some custom providers. I'm using a custom build of SubSonic for several reasons. My custom build leaves out their Provider for the MS Enterpise Blocks and also leaves out

[Mono-dev] Wrong return value for RegistryKey.ToString(): Reason? or Can I fix?

2008-02-25 Thread Justin Cherniak
For some reason RegistryKey.ToString() on Mono does not produce the same value as on .NET. When running a program under windows, Mono returns the keyname + a handle value when calling ToString(). Under .NET, it just returns the keyname. I looked through the source and the offending line seems

[Mono-dev] [PATCH] corlib GetCustomAttributes for overriden properties bug

2008-02-25 Thread Ivan N. Zlatev
Please review the attached patch that fixes our behavior to match MS's in terms of GetCustomAttributes for overridden attributes on properties. That is: * PropertyInfo.GetCustomAttributes - Inherit parameter is ignored and behavior defaults to false * Attributes.GetCustomAttributes - Inherit

Re: [Mono-dev] Wrong return value for RegistryKey.ToString(): Reason? or Can I fix?

2008-02-25 Thread Robert Jordan
Justin Cherniak wrote: For some reason RegistryKey.ToString() on Mono does not produce the same value as on .NET. When running a program under windows, Mono returns the keyname + a handle value when calling ToString(). Under .NET, it just returns the keyname. I looked through the source and

Re: [Mono-dev] Wrong return value for RegistryKey.ToString(): Reason? or Can I fix?

2008-02-25 Thread Robert Jordan
Robert Jordan wrote: Justin Cherniak wrote: For some reason RegistryKey.ToString() on Mono does not produce the same value as on .NET. When running a program under windows, Mono returns the keyname + a handle value when calling ToString(). Under .NET, it just returns the keyname. I looked

Re: [Mono-dev] [PATCH] corlib GetCustomAttributes for overriden properties bug

2008-02-25 Thread Ivan N. Zlatev
On Mon, Feb 25, 2008 at 9:43 PM, Ivan N. Zlatev [EMAIL PROTECTED] wrote: Please review the attached patch that fixes our behavior to match MS's in terms of GetCustomAttributes for overridden attributes on properties. That is: * PropertyInfo.GetCustomAttributes - Inherit parameter is

Re: [Mono-dev] Mono 1.9.0 Preview 2 is out!!

2008-02-25 Thread Thomas Wiest
Justin Cherniak wrote: Sorry, I wasn't sure if my message got sent to the list: Hi, I was wondering if we could get the changes committed in r96259, r96267, and r96268 for bug 361709 https://bugzilla.novell.com/show_bug.cgi?id=361709added to 1.9 as well. I've also posted a patch and

Re: [Mono-dev] Mono 1.9.0 Preview 3 is out - mono 1.9 pre3 / gtk# 2.10.3 not working on Win32

2008-02-25 Thread Daniel Morgan
I'm not sure if there is a bug for this or not. The gtk# 2.10.3 that comes with the mono 1.9.0 preview 3 windows installer is broken. In particular, setting or getting a value from a tree model. I do not have this issue in mono 1.2.6 / gtk# 2.10.2 for windows. If you plan on releasing mono

Re: [Mono-dev] Mono 1.9.0 Preview 3 is out - mono 1.9 pre3 / gtk# 2.10.3 not working on Win32

2008-02-25 Thread Mike Kestner
On Mon, 2008-02-25 at 18:41 -0800, Daniel Morgan wrote: I'm not sure if there is a bug for this or not. There is not. Please file one with specifics. The gtk# 2.10.3 that comes with the mono 1.9.0 preview 3 windows installer is broken. In particular, setting or getting a value from a tree

[Mono-dev] You're cordially invited: Mono.Media

2008-02-25 Thread Scott Peterson
Hey all. A few of us on the Banshee list have been kicking around the idea of abstracting Banshee's media services into a new all-singing, all-dancing, cross-platform library called Mono.Media. The idea is to have a simple API that any CLI developer can use to easily a) playback audio, b)

Re: [Mono-dev] [PATCH] corlib GetCustomAttributes for overriden properties bug

2008-02-25 Thread Raja R Harinath
Hi, Ivan N. Zlatev [EMAIL PROTECTED] writes: On Mon, Feb 25, 2008 at 9:43 PM, Ivan N. Zlatev [EMAIL PROTECTED] wrote: Please review the attached patch that fixes our behavior to match MS's in terms of GetCustomAttributes for overridden attributes on properties. That is: *