Mono is an open source implementation of .NET that runs on many platforms, including Linux, Mac OS X, and Windows. This allows running .NET applications on platforms other than Windows with little to no modification.

learn more… | top users | synonyms

5
votes
0answers
72 views

Corlib not in sync when building Unity games with mdtool in OSX

Unity3D, a popular game engine, packages a version of mono (and monodevelop) with its install. Recently I installed Xamarin Studio, keen to play with it. Later I followed some online guides for ...
5
votes
0answers
575 views

Mono ARMv7 and LLVM

I'm updating my app to ios6 and i having following problem building application with ARMv7 is not possible to use the flag LLVM ... (error MT3001) My system configuration is MonoDevelop 3.0.4.7 ...
5
votes
0answers
499 views

ASP.Net MVC on Linux/Mono

I am thinking of developing a website using the ASP.Net MVC framework on Linux. I would like to know: what are the best practises for developing such a site (are they any different for mono/ ...
5
votes
0answers
418 views

How do I use the log4net FileAppender under mono when running as a background process?

I'm having trouble using a log4net FileAppender with mono. If I spawn the processess in the background (i.e. mono MyApp.exe &), the process suspends after a short period of time. If I run the ...
4
votes
0answers
176 views

Cross compiling mono source for ARM?

i am trying to cross compile mono-2.10.5 source for arm using the steps in the link http://www.mono-project.com/Mono:ARM#Compiling_on_the_device. Installed scratch box in my PC. Most people suggesting ...
4
votes
0answers
554 views

Compiling F# code on Ubuntu 12.04 using Monodevelop

I followed the instructions here for installing Monodevelop with F# support on Ubuntu, however when I open Monodevelop and try to compile a simple F# program I get the message: Error: Framework ...
4
votes
0answers
69 views

Tailcall elimination in Mono

I have a .NET 4.0 application that makes heavy use of tail recursion (programmed in F#). It runs fine on the .NET VM, but it runs out of stack on Mono-3.0.1. I've tried running with mono ...
3
votes
0answers
132 views

Issue running SSL-enabled TCP server under mono

I'm developing an application which requires SSL encryption between the client and server, and needs to run under Windows and in Ubuntu under Mono. At the moment, the server and client pair works ...
3
votes
0answers
175 views

Covariance broken in C# arrays?

Consider following generic interface ITest with a covariant type parameter T, the generic class Test implementing the interface, and a class A and with a subclass B: interface ITest<out T> {   ...
3
votes
0answers
32 views

mono gtk# - hello world deploy to windows

I have this really simple Hello World example i wrote on a linux host using Mono and gtk#. It simply shows a windows with a button. Now i tried to get the binary running on windows but failed. i ...
3
votes
0answers
135 views

Output of DataContractSerializer differs between .NET and Mono

I am serializing data in a Mono For Android application and sending it using REST to a .NET server listening using WCF. So far this has worked fine, however, with this particular data contract, ...
3
votes
0answers
222 views

Error in cross compiling mono for arm

I m trying to cross compile mono for arm architecture with help of scratchbox2 in Ubuntu 12.04 LTS operating system but failed to do so. The whole process I did is given below A. Setting Up ...
3
votes
0answers
113 views

LibUsbDotNet returns garbage

I wrote an application to read a magnetic card-reader using a usb connection. I used libusbdotnet, because it communicates directly with libusb 1.xx on linux. When I pull the card through, I get a ...
3
votes
0answers
55 views

Is it really a limitation to use interfaces such as IList<T>.someMethod in AOT code?

In the mono project documentation this limitation is outlined: Limitation: Generic Interface Instantiation The following class of interface dispatch is not supported in FullAOT mode: ...
3
votes
0answers
132 views

Thread 0x0 may have been prematurely finalized with NSOpenPanel in MonoMac

I have problem when there is call to an object of type NSOpenPanel from an action of an object of type NSMenuItem. My MainController has the next methods, where tblTest is a NSScrollView: ...
3
votes
0answers
99 views

MonoTouch MySQL Database Access

Is there a MySQL provider compatible with MonoTouch for iOS? Can Mono provider for MySQL database be used with MonoTouch?
3
votes
0answers
455 views

Using SlideOut Navigation in MonoCross iOS App

Dillon Buchanan has a great example for creating the a left side slide-out navigation in MonoTouch. My problem is that I'm using the MonoCross and cannot figure out how to implement this. Below is a ...
3
votes
0answers
43 views

mono db4o filenane unknown

Brand new to MOno/db4o and C#. Simple db program and I get an outer stack error "Type Initialization Exception" and the inner stack error states the file name is unknown. I have the db4o.dll file in ...
3
votes
0answers
226 views

How can I build WebSharper on Mono 3.0 on Mac?

WebSharper looks interesting, and Mono 3.0 is just out with F# 3.0. Apparently xbuild can build some MSBuild projects. Straightforward attempt at building a WebSharper clone on mono fails since ...
3
votes
0answers
116 views

Automated/Continuous testing with MonoDevelop

By following the instructions about automating unit tests using Mighty moose for stand alone clients (MonoDevelop IDE), I understood it was possible. There is a section on How can I get Mighty Moose ...
3
votes
0answers
229 views

Use PolicyKit to give my application access to restricted files

I'm writing an application for Ubuntu, which allows you to customize the Unity 2D desktop environment. Some settings, I can change using Dconf, which is user-specific. So if one user changes a ...
3
votes
0answers
458 views

Waiting for debugger to connect

(excuse me for my english!) When i debug my app, the simulator is opening but with nothing... in the monodevelop ide, it shows alert box with message "Waiting for debugger to connect..." ...
3
votes
0answers
138 views

MbUnit under Linux, used within an F# project?

I tried asking this on the galio-users list, but the question failed to appear (google groups says the post was successful). I suppose the list might be moderated by someone who does not read his ...
3
votes
0answers
958 views

Mono 2.10.1 apache errors: Command stream corrupted, last command was -1

When starting a test mono server, Immediately the site is giving quite a few errors. The error I'm particularly concerned about is [error] (70014)End of file found: read_data failed [error] Command ...
3
votes
0answers
759 views

MonoTouch WCF REST Error Creating Channel

I'm trying to access WCF REST services via MonoTouch. I am unable to use a ChannelFactory, as dynamic code generation is not possible in MonoTouch, and because I'm accessing RESTful services, I'm also ...
3
votes
0answers
559 views

What is the cause of 500/503 error in Apache/Mono?

i have web services deployed in Apache/Mono server in my production. It is working fine, but sometime it throws 500 error(internal server error) in my apache log in a random manner (i.e., it throws ...
3
votes
0answers
1k views

Mono resources.resx problem when porting (strange error in resx xml file on '</data>')

So I have a C# app. It has some assets that are linked into it and are beeng embeded during compile time. App compiles and runs perfectly on windows. when testing for compatabilety with mono tells ...
2
votes
0answers
78 views

Xamarin Version 4.0.8 Android Version: 4.6.8 LinkAssemblies issue

I updated my Xamarin Studio to the latest version today, and now I get errors compiling my apps. I get the following error: ...
2
votes
0answers
114 views

How to programmatic connect to PPTP with C# “MonoDevelop”

I am trying to complete a MySQL/Database project. I would like to finalize this project by creating a class that would allow a PPTP connection to my internal network. I know that i could simply add ...
2
votes
0answers
188 views

How can I use System.Windows.Forms in MonoDevelop on Ubuntu?

I met this problem at the beginning of my work. I am using Mono 2.10 with MonoDevelop 2.8. When I create a new C# project, I can not use: using System.Windows.Forms because there is no such ...
2
votes
0answers
101 views

Incorrect, missing, and duplicate keypress events

There appears to be a bug in how the OS X implementation of keyboard events is handled. The bug reveals itself when either multiple keys are pressed in rapid succession or all at once. Running my app ...
2
votes
0answers
42 views

DataAnnotations in monodroid

I have some models in a core library I'd like to share with a MonoDroid project, but System.ComponentModel.DataAnnotations is not available to the monodroid target. I tried grabbing the code for ...
2
votes
0answers
360 views

Trying to run MVC 3 website plus EntityFramework with Mono gives MissingMethodException

I built an ASP.NET MVC 3 web application on Windows 7 using Visual Studio 2012. My application builds and runs without any issues in Visual Studio. I want to edit and run that web application using ...
2
votes
0answers
115 views

Mono CSharp Evaluator : creating two Action<object> via two distinct Run() crashes

I'm trying to embed mono in a c++ executable, and mono crashes on the second evaluator.Run(..) as below. Any idea of what I missed ? Using mono 3.0.3. EmbeddedMonoTest.cpp // EmbeddedMonoTest.cpp ...
2
votes
0answers
206 views

MonoDroid device registeration for push notifications using PushSharp

In my monodroid application I have a problem registering some devices for push notifications using pushSharp. My general push notification setup works fine on newer devices such as SGS2, SGS3 and ...
2
votes
0answers
75 views

Making an Interactive and Zoomable Radial Tree using Mono

Background Information / Layout I'm trying to display a radial tree as part of a UI. The data for the tree is static, and there are typically a few thousand nodes. Just drawing it, per se, is not a ...
2
votes
0answers
477 views

Embedding Mono on iOS

I want to embed mono into my iOS application. I do not want to use MonoTouch. I want to embed mono manually like this: http://www.mono-project.com/Embedding_Mono I've have done this successfully ...
2
votes
0answers
129 views

ObjectDisposedException when selecting DataGridView cells?

I think I have found a bug in mono, but I have not isolated it completely, I need help to isolate my problem. To reproduce this error run csharp HelloWorld.cs click any cell modify the contents of ...
2
votes
0answers
217 views

How can I run ASP.NET MVC3 in Apache?

I have an Ubuntu 12.10 server installed running Mono 2.10.8. I also have Apache2 running and was able to run ASP.NET with mod_mono version 4. I am now trying to run an ASP.NET MVC3 web app, but I get ...
2
votes
0answers
121 views

SIGABRT error on Monodevelop's custom command mono soft debugger on remote device

I run Ubuntu on my host PC and remote ARM device. I'm trying to use Monodevelop on host PC to remotely debug c# code running on ARM board. I follow What is expected in the "Output" field of ...
2
votes
0answers
144 views

MemoryMappedFiles on mono

I’ve used memory mapped files in windows and visual studio successfully, but,I’m trying to migrate a project to mono and fedora 17 , my code is as simple as this: Var file = ...
2
votes
0answers
209 views

Same Machinekey on Mono and IIS running MVC 4

Current setup: Server A - OS: Debian Squeeze Web Server: Nginx + Fastcgi + Mono 3.0 ASP.NET MVC 4 (.Net 4.5) using base internet template. Db Backend: Mysql Domain: (example) ...
2
votes
0answers
136 views

NullReferenceException on creating an instance of an inheriting class

I am writing my own game engine in XNA and started to port it into MonoGame so that I can put it on Android/iOS/Windows 8. For some reason I am getting a null reference exception when the main create ...
2
votes
0answers
496 views

Installing Mono and mod_mono on CentOS with Yum

I've been trying to find a way to get Mono into Yum, There's a similar question here: Install Mono on Centos5.5 using YUM However this is out of date - the following repositories no longer exist: ...
2
votes
0answers
77 views

Mono mkbundle on Fedora

I need to deploy a C# application on a Fedora system so I've been using mono to build and test my solution. I need to package mono alongside my executable, so have been trying to use the mkbundle tool ...
2
votes
0answers
238 views

Opening a Samba Server file using Mono C# in Mac OS X

We are using Mono C# to write a service (running in Mac environment) which will read a particular XML file and open the file from the path mentioned in the XML file. The file path can be a local one ...
2
votes
0answers
128 views

Android, how do I release a file lock from a file that I have deleted

I need to delete and recreate a directory in my Android (written with Mono) app when the user wants to change log in details. I delete the directory thus: Directory.Delete(AppDataFolder, true); ...
2
votes
0answers
409 views

nuget.exe install not updating packages.config (or .csproj)?

While trying to get a nuget build workflow working on Linux/mono, I've noticed an odd thing. Being on Linux, I cannot use the nuget Visual Studio plugin or the Powershell console, but I have the ...
2
votes
0answers
158 views

How to generate delegate type from method reference?

I'm trying to generate delegate type from MethodReference, but PEVerify keeps saying my type isn't valid. Here's my code: TypeDefinition CreateDelegates(TypeDefinition type, MethodReference ...
2
votes
0answers
466 views

AForge.Net Filters alternatives for Monotouch

Is there any options? I can't get it worked for Monotouch. Seems like some functions missing from AForge*.dll's. Now, I'm looking at OpenCV, but it's just too complicated for such a simple problem. ...

1 2 3 4 5 22