mono

What's the main problem of Windows-porting Banshee?

Is it specific to the Banshee project or to the Mono platform as a whole? ...

WCF support in Mono

I am trying to figure out what is and isn't supported for WCF under Mono. I have read the WCF Development Documentation on the Mono Project page. For anyone with experience using WCF under Mono, are there any gotchas I should be aware of? ...

Building Moonlight Trunk - Mono.Cecil.dll

I'm unable to build Mono Moonlight from trunk or from recent tarballs due to the build error below. This happens after Make successfully builds a few other subdirectories: make[2]: Leaving directory `/home/dev/MonoTar/moonlight-1.99.5/src' Making all in class make[2]: Entering directory `/home/dev/MonoTar/moonlight-1.99.5/class' ...

When is mono a good choice over .net?

When is using mono a good choice over using .net for developing a production system? The upfront cost of the tooling is zero, but how does the total cost of development using mono compare to using .net? What is the sweetspot for adopting mono.? ...

Mono Cecil documentation and tutorials?

Hi, I am new to Mono Cecil! Any comprehensive documentations and tutorials on Mono Cecil? I have seen these articles and video below, so don't give me these links again: http://www.mono-project.com/Cecil%3AFAQ http://blog.paul-mason.co.nz/2009/08/protecting-your-precious-code-monocecil.html http://www.dimecasts.net/Casts/CastDetails...

What are the following constructs in Mono.Cecil referring to in C#?

Can someone explain what are these referring to? MemberReference, TypeReference, ExternType, Override, NestedType, PInvokeInfo, SecurityDeclaration and CustomAttribute and MarshalSpec Best if can illustrate with examples. Will appreciate even if u don't know all, but still help me in understanding those u know. Cos I am trying to write ...

mod_mono parallel requests dont't run in parallel

hi mono fans, I did something quite similar to this: http://stackoverflow.com/questions/1060539/parallel-asynchronous-ajax-requests-using-jquery We develop a public website, utilizing shopping apis from amazon,ebay etc. i have 3 requests going off in parallel ( I know they go off in parallel, because I pass in the client's current ti...

Are XmlMtomReader and XmlMtomWriter fully implemented in Mono project?

I'm working on a cross-platform solution currently. The solution uses XmlMtomReader and XmlMtomWriter from .NET framework 3.0. Now i need to know if these two classes (and all the nessasary infrastructure around them) are fully supported in Mono project from the porting-it-to-linux point of view. :) ...

In MonoDevelop, how do I set the application output to a fixed-width font?

I can't find any sort of font settings for Application Output. I'm not sure why it's not fixed-width by default. Any ideas? ...

How to use LuaInterface on Mono/Linux

When I try to use LuaInterface on Mono on Linux (using Mono 2.0 on Ubuntu 9.04) I get the following exception: ** (ParallelTasksSimulator.UI.exe:8599): WARNING **: Method ':.DoDllLanguageSupportValidation ()' in assembly '/home/ulrich/test/Debug/lua51.dll' contains native code that cannot be executed by Mono on this platform. The as...

ASP.NET 2.0 Application with a Sqlite Backend on Mono

Hello: I have an extensive ASP.NET Sqlite driven application that will run through Apache with the help of Mono. For testing purposes, I created an application that has two textboxes and a button. When the textboxes are filled with text and the button is executed, a Sqlite table will receive the text within the textboxes. This test a...

General C# + ASP.net + Mono questions.

I recently installed the Mono Framework, .net 3.5 f/w and MonoDevelop (hint: I'm trying to switch over from PHP to C#3 + .net) Even though the Mono installer states that it has installed XSP2 (I can start XSP independently from the context menu), MonoDevelop says that it cannot find XSP2. Bonus Q1: When you have an asp.net app, what are ...

Why is it not possible to use the MPMoviePlayerController more than once?

In MonoTouch, we ran into this problem with the Movie Player sample in that it would only play the video once, but would not play it a second time. I am asking this question to post an answer, since it has been hitting various folks. ...

Mono assembly folders?

On a windows system the registry has keys like: HKLM\SOFTWARE\Microsoft\.NETFramework\v2.0.50727\AssemblyFoldersEx for locations of dot net assembly folders other than the gac. Does a non-win mono system have a way of retrieving these or was it just considered not important? ...

Gtk.RecentManager: Way to list Items

I wanted to list all my "Recently Used" Items. I use this code: public static void Main(string[] args) { Application.Init (); RecentManager rm = RecentManager.Default; GLib.List items = rm.Items; Console.WriteLine(items.Count+" items."); foreach(object item in items) { Console.WriteLine(item.ToString()); ...

[.NET] How to talk to a database in a portable way?

I'd like to start an application that makes heavy use of a database, and is supposed to run on Windows under .NET as well as Mac/Linux under Mono. Having done some research, I've realised that neither LINQ-to-SQL nor LINQ-to-Entities are production-ready in Mono at the moment (here and here). According to the former link, LINQ-to-SQL ma...

"Mono Debugger" not shown in MonoDevelop "Attach to Process" dialog

I'm running MonoDevelop 2.2 Beta 1 with Mono 2.4.2.3 on Ubuntu 9.04 x64. I've compiled it all from source (had to, since it's a beta version). I have both GDB and MDB debuggers installed. When I open a C# project I can start it in the debugger and stop at a breakpoint, so it looks like the MDB debugger is working. However, if I select Ru...

Resolving missing dependency libexif.so.9 while trying to Yum install Mono on CentOS 5.3.3

Hey guys, I'm trying to install Mono on CentOS 5.3.3 through Yum. According to the instructions I found elsewhere I grabbed a copy of mono.repo from the Mono site and placed it in the /etc/yum.repos.d directory. The file looks like this: [mono] name=Mono for rhel-4-i386 (stable) baseurl=http://ftp.novell.com/pub/mono/download-sta...

Mono Documentation for NotImplementedException and MonoTodo

I'm new to Mono and plan to port my application over, if possible. I've run MoMA and there are some places it has identified that I'm calling that could throw a NotImplementedException or are tagged MonoTodo. Is there anywhere I can get more information on these specific instances it's flagging down? For instance, I'm calling the Recei...

How can I launch multiple instances of MonoDevelop on the Mac?

I would like to open a new MonoDevelop instance to work on a different project on the Mac, and the OS is currently preventing me from opening a new instance. ...