Re: [Mono-aspnet-list] Bug in asp:bulletedList?

2010-08-05 Thread achilds
I'd like to add some additional information... I changed the asp:bulletedList control from DisplayModeHyperLink to LinkButton and added a handler in my codebehind for the OnClick event. No matter how I use the Replace() method I can not remove the prepending slash in the URL. Thanks, Aaron --

Re: [Mono-dev] Git faq updated with workflows

2010-08-05 Thread pablosantosl...@terra.es
Hi all, I've just posted a very detailed entry describing branch per task. http://codicesoftware.blogspot.com/2010/08/branch-per-task-workflow-explained.html I didn't specifically talk about Plastic so it's perfectly doable with Git too. pablo On 29/07/2010 13:17, pablosantosl...@terra.es

[Mono-dev] [patch] exception while loading configuration

2010-08-05 Thread Jb Evain
Hey, While investigating an issue and running with MONO_ENV_OPTIONS=--trace=E:all I noticed that when we're loading the current configuration, we throw and immediately swallow an exception when there's no .config file for the current executable. The attached patch makes our internal

Re: [Mono-dev] [patch] exception while loading configuration

2010-08-05 Thread Gonzalo Paniagua Javier
On Thu, 2010-08-05 at 16:50 +0200, Jb Evain wrote: Hey, While investigating an issue and running with MONO_ENV_OPTIONS=--trace=E:all I noticed that when we're loading the current configuration, we throw and immediately swallow an exception when there's no .config file for the current

Re: [Mono-dev] [patch] exception while loading configuration

2010-08-05 Thread Jb Evain
On Thu, Aug 5, 2010 at 6:23 PM, Gonzalo Paniagua Javier gonzalo.m...@gmail.com wrote: I think I did something like that some time ago and a few applications broke. Check the history for that file and you'll see. Apparently, my fix is quite different, it let the implementer of OpenStreamForRead

Re: [Mono-list] can't build mcs in cygwin due to build/deps/basic-profile-check.out

2010-08-05 Thread 冶晶邓
waing for help ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Pure wrapper calling native code

2010-08-05 Thread Stifu
Aren't native / unmanaged DLLs Windows only? If that's the case, then it's not possible. Brendon Chung wrote: I currently have a program written in C# and running via Mono on my Mac. I need this program to access an unmanaged C++ dll. My first attempt at this was using the DllImport

Re: [Mono-list] Pure wrapper calling native code

2010-08-05 Thread Maser, Dan
It's possible if you own the source to the unmanaged DLL can make ports to the desired operating systems. My project makes heave use of both managed C# and unmanaged C++ dlls, and the C++ dlls I compile for both windows and linux. -Original Message- From:

Re: [Mono-list] Pure wrapper calling native code

2010-08-05 Thread Jonathan Pryor
Short [0] version: http://www.mono-project.com/dllimport Brendon Chung wrote: I need this program to access an unmanaged C++ dll. Which prompts the single most important question: do you have a version of this C++ DLL built for the Mac platform? (For example, if the C++ DLL is `foo.dll`, do