Re: [Mono-dev] How can I build a minimal mono runtime system?

2010-12-21 Thread CodeSlinger
I have to respectfully disagree that being able to remove major subsystems that one does not need at all is fluff - major components such as the compilers, the GUI and ALL of the web components instead of just moonlight. Some of the current --with/--enable options, esp. some of the

Re: [Mono-dev] How can I build a minimal mono runtime system?

2010-12-21 Thread Stefanos A.
There is a very simple solution to this: build everything but deploy only the dlls that you need. Use mono-linker to find out which dlls you are linking against, so if you don't need System.Net.dll, System.Data.dll, etc, keep them out. I am using this approach for a game. The Mono runtime fits in

Re: [Mono-dev] How can I build a minimal mono runtime system?

2010-12-21 Thread CodeSlinger
Thanks. Is there not a core set of linux binaries (e.g. besides mono itself) and .NET dlls needed for the CLR runtime? Or do I literally only need the mono binary and those dlls referenced by my application? If so I can put together a test app that will reference all the functionality I need and

Re: [Mono-dev] How can I build a minimal mono runtime system?

2010-12-21 Thread Robert Jordan
On 21.12.2010 14:43, CodeSlinger wrote: I have to respectfully disagree that being able to remove major subsystems that one does not need at all is fluff - major components such as the compilers, the GUI and ALL of the web components instead of just moonlight. Some of the current

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

2010-12-21 Thread mike
Very interesting Jon, I will look into this. Thanks again for your assistance. -- View this message in context: http://mono.1490590.n4.nabble.com/File-not-found-error-when-using-Activator-CreateInstanceFrom-tp3064104p3153343.html Sent from the Mono - Dev mailing list archive at Nabble.com.

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

2010-12-21 Thread mike
For readers of this thread, a good link on mixed (native and managed code) assemblies can be found here) http://msdn.microsoft.com/en-us/library/x0w2664k%28v=vs.80%29.aspx -- View this message in context:

[Mono-dev] [PATCH] more support for Google Native Client

2010-12-21 Thread Elijah Taylor
Greetings Mono developers! *[tl;dr very large patch for Native Clienthttp://www.chromium.org/nativeclient support hosted here https://github.com/elijahtaylor/mono, would love feedback and many eyes to look at it] * I'm back with another round of changes for supporting Google's Native Client

Re: [Mono-dev] VS2010 remote debugging?

2010-12-21 Thread Robert Jordan
On 21.12.2010 04:08, CodeSlinger wrote: Since VS2010 supports remote debugging, is there a Linux debug kernel that can be contacted by VS2010 to allow full remote debugging from VS201 on WIn7 x64 to Linux? I know there are the mono tools that do this from VS2010 to Linux but I'm not sure if

[Mono-dev] WCF: netTcpBinding

2010-12-21 Thread Karsten Fourmont
Hi, thanks to the quick fix for the Datetime serialisation issue (thank you Atsushi!), I'm getting closer to moving my WCF heavy project over to Mono. (Well the server side actually, client's WPF...) But now I think I hit the biggest barrier: security netTcpBinding. Here are my requirements

Re: [Mono-dev] Mono Tasklets (microthread resuming with different stack, and possibly microthread migration)

2010-12-21 Thread Rodrigo Kumpera
On Thu, Dec 16, 2010 at 4:28 AM, Virgile Bello virgile.be...@gmail.comwrote: I was wondering a few things concerning Mono.Taskets: 1/ By modifying mono to not throw an exception when marking top-most frame a second time (using Mono.Continuation.Mark), I figured more behavior could be

Re: [Mono-dev] What is best environment for building mono-2.8.1 for Windows?

2010-12-21 Thread greenaj
Awsome, thanks a lot. I seemed to be cross-compiling successfully for Windows on SuSE 11.3 using a Virtual Box image. I accidentally deleted the snapshot with the build configuration and now after setting up the build environment again the build does not seem to go the same. libmono-2.0.dll

Re: [Mono-dev] What is best environment for building mono-2.8.1 for Windows?

2010-12-21 Thread Jérôme De Cuyper
On Tue, Dec 21, 2010 at 7:44 PM, greenaj gree...@cox.net wrote: Awsome, thanks a lot. I seemed to be cross-compiling successfully for Windows on SuSE 11.3 using a Virtual Box image. I accidentally deleted the snapshot with the build configuration and now after setting up the build

Re: [Mono-dev] What is best environment for building mono-2.8.1 for Windows?

2010-12-21 Thread greenaj
I think cross my compilation environment is screwed up then. I noticed there are other windows cross compilation environments for SuSE 11.3. Maybe building under Ubuntu is easier. The repos I am using are: http://download.opensuse.org/repositories/Mono:/Community/openSUSE_Factory/

Re: [Mono-dev] Process problem

2010-12-21 Thread Charles Esterbrook
On Thu, Oct 28, 2010 at 6:55 AM, Robert Jordan robe...@gmx.net wrote: On 28.10.2010 09:58, Charles Esterbrook wrote: Thanks, Stefan. So our diffs are at least: arch vs gentoo, x86 vs amd64 and 32-bit vs 64-bit.I don't know if you downloaded the source ball and built from that or did

Re: [Mono-dev] WCF: netTcpBinding

2010-12-21 Thread Atsushi Eno
Hi Karsten, (2010/12/22 5:44), Karsten Fourmont wrote: Hi, thanks to the quick fix for the Datetime serialisation issue (thank you Atsushi!), I'm getting closer to moving my WCF heavy project over to Mono. (Well the server side actually, client's WPF...) Thanks for the nice bug report :)

Re: [Mono-list] Process in Mono different from .Net

2010-12-21 Thread Piotr Wysocki
On 12/20/2010 05:40 PM, madrang wrote: Nobody knows how to start a process that is going to outlive its parents ?? I can use invoke or any workaround that is going to work. Actually, the code you provided in the first post works for me. -- Piotr Wysocki Mobile Systems Research Labs, Poznan

Re: [Mono-list] Pending posts and top level mono forum hot link

2010-12-21 Thread Steve Lessard
Dave Kolb wrote: And issue two apparently was a FireFox issue and the mono link is hot in IE8. I tested the forum page containing Dave's message (http://go-mono.com/forums/#nabble-td3096414%7Ca3096611) in Safari 5.0.3 (6533.19.4), Google Chrome 8.0.552.231, Firefox 3.6.12 and Opera 11.0 build

Re: [Mono-list] Process in Mono different from .Net

2010-12-21 Thread Steve Lessard
Some operating systems have a tool for asynchronously launching applications. On OS X the command line tool is called open. On Windows the command line tool is called start. Is there a similar tool in Linux? From: madrang j...@hotmail.com To:

Re: [Mono-list] Pending posts and top level mono forum hot link

2010-12-21 Thread Robert Jordan
On 21.12.2010 19:35, Steve Lessard wrote: Now that I've diagnosed the bug and provided a solution how can I get the solution incorporated into the forums code? -SteveL The forum is actually a mailing-list-to-web-forum gateway (http://www.nabble.com/) that runs within an iframe. Regular users

Re: [Mono-list] Process in Mono different from .Net

2010-12-21 Thread Robert Jordan
On 21.12.2010 19:53, Steve Lessard wrote: Some operating systems have a tool for asynchronously launching applications. On OS X the command line tool is called open. On Windows the command line tool is called start. Is there a similar tool in Linux? xdg-open. Mono's

[Mono-list] Installing Boo Extension (Mac)

2010-12-21 Thread Steve Gentile
Could anyone assist in describing how to install the boo extensions for MonoDevelop on the Mac ? Thanks! ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] WCF

2010-12-21 Thread Steve Gentile
Is anyone using WCF with Monodevelop ? Is it possible ? I have a mvc project with wcf that I want to migrate over to use on MonoDevelop Thanks! ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] WCF

2010-12-21 Thread Atsushi Eno
Hello, There are some points to note for answer to your question: - There is Add Service Reference command implemented in MonoDevelop 2.4. - svcutil tool is also implemented. The ASR command above is just an integrated way to this tool. - Our cilent proxy generator has limited functionality