0
votes
2answers
32 views
ASP.NET MVC 2 Preview 2 under Mono in Linux
I am actually successfully running a production website with ASP.NET MVC under Mono in a Ubuntu LTS Linux. This server is located somewhere in the cloud and it rocks!
Today, I have tried to make it …
1
vote
4answers
203 views
Converting .NET App to x86 native code
There's a program written entirely in C# that targets .NET Framework 2.0.
Is there a way I could somehow compile (translate) managed EXE to a native one so it could be .NET-agnostic? I know there are …
1
vote
1answer
39 views
What does .NET add to Windows/Linux processes and threads?
As far as I know, .NET uses Windows processes.
What extra state information & functionality does it add to information contained in Windows thread/process descriptors?
And what is different in …
5
votes
2answers
60 views
Best practices for .NET/MONO cross compiling
What are the best practices for writing code that can be cross compiled on .NET (windows) and Mono (linux)? Although I am very familiar with .NET, I am not that experienced in Mono and all its …
4
votes
7answers
248 views
Why wouldn’t Microsoft want to hinder Mono and Moonlight?
Microsoft has all interest in preventing cross-platform software to happen. The incompatibility between Windows and Linux is the main reason why people don't migrate to Linux in large numbers. Both …
0
votes
2answers
31 views
How do I compile all files in a directory with mono?
I want to compile a C# app with mono that consists of multiple files (all in 1 directory). What is the command that I need?
2
votes
3answers
35 views
Does Mono support XAML?
Does Mono support XAML?
Specifically I'm thinking of switching to using XAML for new GUI work that I do but also I like to keep my personal projects compilable in Mono. Should I just stick with plain …
0
votes
0answers
13 views
[C#] Get and set enviroment variables on mono and possible alternative
I got a little c# dll that implements a message queue service and on windows it runs perfectly.
To locate all the queues i use an enviroment variable stored in Machine during the installation.
…
1
vote
2answers
67 views
mono, c#, sockets, performance
Hi!
I developed simple async server that listens to unix socket and sync client that send the some small piece of data. Time between moment when i send data from client to the moment when server …
0
votes
4answers
79 views
System.Windows.Forms.Timer event doesn’t fire at all when run under mono
I compiled my application with monodevelop. And tried to run with mono on Linux. It seems that the System.Windows.Forms.Timer objects' tick event never fires.
It runs without problems on windows, but …
0
votes
2answers
56 views
Parameters passed by reference come back garbage using P/Invoke
I am using Mono/C# on Linux and have the following C# code:
[DllImport("libaiousb")]
extern static ResultCode QueryDeviceInfo(uint deviceIndex,
ref uint PID, ref uint nameSize, StringBuilder …
1
vote
2answers
75 views
How to pass an unsigned long to a Linux shared library using P/Invoke
I am using C# in Mono and I'm trying to use pinvoke to call a Linux shared library.
The c# call is defined as:
[DllImport("libaiousb")]
extern static ulong AIOUSB_Init();
The Linux function …
2
votes
1answer
174 views
Ubuntu 9.10 + MonoDevelop + Debug + NUnit
I am a Linux noob and I would like to debug a unit test.
If I run my test in MonoDevelop it goes green but if I try to debug everything freeze and I have to stop the debugger. My breakpoint on first …
3
votes
1answer
61 views
Get MAC Address in linux using mono
How do I get the MAC address of my computer in a Mono application on Linux?
3
votes
2answers
113 views
What are some things Mono is not a good fit for?
I've started your typical web project from scratch using the Mono platform. You know, web services, a UI, MySQL database, all that. I've heard around the net that it's not a picture-perfect …
