[Mono-list] Question about Mono processor architecture reporting on ARM platforms

2015-01-29 Thread Alex J Lennon
Hi, I'm trying to determine the processor architecture at runtime on an ARM platform using the following code snippet, but it reports I386 class Program { static ImageFileMachine ProcessorArchitecture { get { PortableExecutableKinds

[Mono-list] Different random errors connecting to a service

2015-01-29 Thread Alberto G
Hi all, I am trying to connect to a vendor SOAP service and I created a very basic 7 lines consoleapp that just connect to the service but when trying to run same .exe several times I get 3 different output errors each time. Same application runs ok in windows. Why for the same application

Re: [Mono-list] Question about Mono processor architecture reporting on ARM platforms

2015-01-29 Thread Alex J Lennon
On 29/01/2015 14:38, Jonathan Pryor wrote: On Jan 29, 2015, at 3:33 AM, Alex J Lennon ajlen...@dynamicdevices.co.uk wrote: Can anybody advise if this is an implementational issue or if I'm doing something wrong here? You're doing something wrong, *and* there's an implementation issue.

Re: [Mono-dev] NUnit versions that come with mono (Mono-devel-list Digest, Vol 117, Issue 45)

2015-01-29 Thread Jo Shields
On 29/01/15 00:54, zvonimir wrote: Hi all, So I am having trouble understanding (and upgrading) NUnit versions that come with mono. In particular, it seems that on openSUSE mono 3.8.0 comes with NUnit 2.4.8. On the other hand, on Ubuntu mono 3.2.8 seems to come with NUnit 2.6.0. I find

Re: [Mono-list] Question about Mono processor architecture reporting on ARM platforms

2015-01-29 Thread Jonathan Pryor
On Jan 29, 2015, at 3:33 AM, Alex J Lennon ajlen...@dynamicdevices.co.uk wrote: Can anybody advise if this is an implementational issue or if I'm doing something wrong here? You're doing something wrong, *and* there's an implementation issue. Module GetPEKind() returns information about the

Re: [Mono-dev] NUnit versions that come with mono

2015-01-29 Thread xplicit
Use nuget to install NUnit of the version you needed, and you won't be dependent on the OS you're working with. #this installs nunit-console 2.6.4 nuget install NUnit.Runners #this installs nunit-console 2.6.3 nuget install NUnit.Runners -version 2.6.3 To run: chmod a+x

Re: [Mono-dev] NUnit versions that come with mono

2015-01-29 Thread Charlie Poole
Ideally, install the runner components of NUnit once, in a convenient location, by downloading the binaries from NUnit.org. That's how we designed the runners to be used. Each runner version rv can handle tests for any framework version fv, such that 2.0 = fv = rv. NuGet works really well for