Re: [Mono-dev] If you accept pull requests on Mono's github

2015-01-05 Thread Eberhard Beilharz
Andres G. Aragoneses wrote on 2015-01-03 at 21:51 +0100: > On 03/01/15 21:42, Edward Ned Harvey (mono) wrote: >> I don't know if you want tests that are known to fail. > > If it fails, you can decorate it with the attribute > [Category("NotWorking")], but AFAICT contributing a failing test > d

[Mono-dev] WIP: Microsoft's System.Runtime.Serialization

2015-01-05 Thread Miguel de Icaza
Hey guys, My work is described here: https://trello.com/c/L6jkUdOQ/12-system-runtime-serialization The status of this patch is: Work in progress to bring Microsoft System.Runtime.Serialization to Mono The current code compiles by replacing existing Mono code with Microsoft code

Re: [Mono-dev] Porting System.Numerics from referencesource, approaches for copying code?

2015-01-05 Thread Alexander Köplinger
Anything left for me to do on this one? :) -- Alex From: mig...@xamarin.com Date: Wed, 3 Dec 2014 13:34:47 -0500 Subject: Re: [Mono-dev] Porting System.Numerics from referencesource, approaches for copying code? To: alex.koeplin...@outlook.com CC: mono-devel-list@lists.ximian.com Got it. Miguel

Re: [Mono-dev] Porting System.Numerics from referencesource, approaches for copying code?

2015-01-05 Thread Miguel de Icaza
Hey, Sorry, really poor email on my part. You answered my concern to my satisfaction, so this is good to go. Miguel On Mon, Jan 5, 2015 at 12:09 PM, Alexander Köplinger < alex.koeplin...@outlook.com> wrote: > Anything left for me to do on this one? :) > > -- Alex > > --

Re: [Mono-dev] Porting System.Numerics from referencesource, approaches for copying code?

2015-01-05 Thread Alexander Köplinger
Thanks Miguel, I merged the referencesource PR in and it seems the Mono PR which replaces existing implementation is green now on Jenkins: https://github.com/mono/mono/pull/1433 Just wanted to confirm you're OK with merging that one in as well :) -- Alex From: mig...@xamarin.com Date: Mon, 5

Re: [Mono-dev] Open source .Net, and TLS 1.1 & 1.2

2015-01-05 Thread Edward Ned Harvey (mono)
> From: Miguel de Icaza [mailto:mig...@xamarin.com] > > We have implemented TLS 1.1 and 1.2 on top of the not yet open sourced > networking stack and will be publishing it as soon as Microsoft open sources > the .NET networking stack. Have there been unpublished changes to Mono.Security.X509.X509

[Mono-dev] Mono.Posix Cross Compiling

2015-01-05 Thread Greg Young
Have anyone used mono.posix or mono.unix.native in a cross compiling scenario where you have to support visual studio builds? How did you handle this? I don't seem to be able to do a platform specific reference. I am not using much out of it and it seems like just copy/pasting the extern definitio

[Mono-dev] End line/column information in symbol files

2015-01-05 Thread Zinkevicius, Matt
Hello, When debugging our program on Linux with Mono 3.10, I've noticed that the source code sequence points that the soft debugger gives never include valid end line or end column numbers. They are always set to -1. Is this because the mono compiler doesn't include these values in the mdb symb

Re: [Mono-dev] End line/column information in symbol files

2015-01-05 Thread Zoltan Varga
Hi, There is a tool named mdbdump in mcs/class/lib/net_4_5/mdbdumb.exe which can be used to dump the contents of .mdb files. In this case, mcs currently doesn't generate column numbers, so sdb cannot return them. Zoltan On Mon, Jan 5, 2015 at 6:12 PM, Zinkevicius, Matt wrote: >

Re: [Mono-dev] End line/column information in symbol files

2015-01-05 Thread Zinkevicius, Matt
I am seeing the starting line and column numbers, just not the ending ones. You are saying that the compiler is not providing these values? The place exists where to put these values in the symbol file but they always seem to be -1. Is there a reason this is not supported? Would a patch to fix t

Re: [Mono-dev] Mono.Posix Cross Compiling

2015-01-05 Thread David Curylo
Greg, If you edit the .csproj file, you can have a platform-specific reference Mono.Posix like this: On Windows with Visual Studio or msbuild, the reference will be ignored. Building under mono with Xamarin Studio, Monodevelop, or xbuild, the reference will be included. -Dave On Jan 5, 20

Re: [Mono-dev] Mono.Posix Cross Compiling

2015-01-05 Thread Greg Young
Ah nice I didn't know you could do that. Thanks! Saves me the trouble of copying bunches of externs :) Greg On Tue, Jan 6, 2015 at 5:01 AM, David Curylo wrote: > Greg, > > If you edit the .csproj file, you can have a platform-specific reference > Mono.Posix like this: > > > > On Windows with V

Re: [Mono-dev] End line/column information in symbol files

2015-01-05 Thread Marek Safar
Hello, I am seeing the starting line and column numbers, just not the ending ones. > You are saying that the compiler is not providing these values? The place > exists where to put these values in the symbol file but they always seem to > be -1. > Correct, it's one of not implemented compiler fea