Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-04-07 Thread Jason Curl
t@lists.ximian.com Subject: Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list- boun...@lists.ximian.com] On Behalf Of Greg Young (for clarification of my previous response, because I was asked fo

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-04-07 Thread Greg Young
x)". >> >> chris >> >> -Original Message- >> From: mono-devel-list-boun...@lists.ximian.com >> [mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Edward Ned >> Harvey (mono) >> Sent: Tuesday, March 29, 2016 5:49 AM >>

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-04-06 Thread Jason Curl
rd Ned Harvey (mono) Sent: Tuesday, March 29, 2016 5:49 AM To: Greg Young <gregoryyou...@gmail.com>; Jason Curl <jcurln...@arcor.de> Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux From: mono-devel-list-boun.

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-30 Thread Alan
-Original Message- > From: mono-devel-list-boun...@lists.ximian.com [mailto: > mono-devel-list-boun...@lists.ximian.com] On Behalf Of Jonathan Pryor > Sent: Wednesday, March 30, 2016 7:04 AM > To: Alan McGovern <alan.mcgov...@gmail.com> > Cc: mono-devel-list <mono-devel-

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-30 Thread Chris Swiedler
McGovern <alan.mcgov...@gmail.com> Cc: mono-devel-list <mono-devel-list@lists.ximian.com> Subject: Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux On Mar 30, 2016, at 8:33 AM, Alan <alan.mcgov...@gmail.com> wrote: > If you package Mono.Posix.dll

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-30 Thread Jonathan Pryor
On Mar 30, 2016, at 8:33 AM, Alan wrote: > If you package Mono.Posix.dll your app *will crash* on different systems. Not necessarily. > This binary is platform specific and is not safe to copy between OS’s. Mono.Posix.dll *itself* contains no platform-specific code and

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-30 Thread Alex J Lennon
On 30/03/2016 12:32, Edward Ned Harvey (mono) wrote: >> From: Chris Swiedler [mailto:cswied...@trionworlds.com] >> >> Why not just include references to Mono.Posix.dll in the Windows build? You >> don't have to install the full framework. > Then when you run it on mono, you're using the

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-30 Thread Alan
Heya, If you package Mono.Posix.dll your app *will crash* on different systems. This binary is platform specific and is not safe to copy between OS's. It is also matched with a platform specific native binary, libmonoposixhelper.[dll|dylib|so], which cannot be copied/pasted across platforms

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-30 Thread Edward Ned Harvey (mono)
> From: Chris Swiedler [mailto:cswied...@trionworlds.com] > > Why not just include references to Mono.Posix.dll in the Windows build? You > don't have to install the full framework. Then when you run it on mono, you're using the Mono.Posix.dll that you packaged with your application, instead of

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-29 Thread Chris Swiedler
On Behalf Of Edward Ned Harvey (mono) Sent: Tuesday, March 29, 2016 5:49 AM To: Greg Young <gregoryyou...@gmail.com>; Jason Curl <jcurln...@arcor.de> Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux > F

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-29 Thread Edward Ned Harvey (mono)
> From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list- > boun...@lists.ximian.com] On Behalf Of Greg Young > > (for clarification of my previous response, because I was asked for clarification off-list) If you have some code that calls Mono.Posix.Something(), and you have a

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-28 Thread Edward Ned Harvey (mono)
> From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list- > boun...@lists.ximian.com] On Behalf Of Greg Young > > That doesn't do the trick all by itself, because then your code won't compile on windows, in all the places where something references Mono.Posix. If you want to

Re: [Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-28 Thread Greg Young
On Mon, Mar 28, 2016 at 2:05 PM, Jason Curl wrote: > Hello, > > How can I reference Mono.Posix on Linux and still allow compilation on > Windows without installation of Mono or extra Linux specific assemblies? > > I'm afraid of referencing via NuGet as I want the Mono

[Mono-dev] Cross Platform on Linux/Windows with Mono.Posix reference on Linux

2016-03-28 Thread Jason Curl
Hello, How can I reference Mono.Posix on Linux and still allow compilation on Windows without installation of Mono or extra Linux specific assemblies? I'm afraid of referencing via NuGet as I want the Mono runtime on the Linux installation to take preference over NuGet binaries on Linux. The