mono

MonoDevelop in windows

is there a version of Monodevelop that run on windows ? if so where can i get ? thx in advance ...

Building Cocoa UIs for OS X with C# and Mono

Has anyone spent any time comparing the various Objective C bridges and associated Cocoa wrappers for Mono? I want to port an existing C# application to run on OS X. Ideally I'd run the application on Mono, and build a native Cocoa UI for it. I'm wondering which bridge would be the best choice. In case it's useful to anyone, here ar...

How to detect which .NET runtime is being used (MS vs. Mono)?

Hi, I would like to know during execution of a program whether it is being executed using the Mono runtime or the Microsoft runtime. I'm currently using the following code to determine whether I'm on a MS CLR: static bool IsMicrosoftCLR() { return RuntimeEnvironment.GetRuntimeDirectory().Contains("Microsoft"); } However, this ...

C# mono from windows to mac

I wanted to know what i shouldn't do in code that will prevent my C# app from running on mac. ...

MONO/ASP.NET Linux Hosts?

I was wondering if anyone knew of any webhosts that let you deploy asp.net applications to run under mono. edit: Ideally, the host would require little to no configuration on my part to deploy an ASP.NET application. ...

Is there a mono for c++?

Are their any libraries similar to mono but for the c++ language? I know boost exist but i like mono much more then boost. -edit- I'm looking to do more. Like play sound easier (crossplatform), GUI, load image, time, etc. I guess i am looking for what people might consider an engine or a large library. ...

How to decode wav, mp3, and/or ogg in .Net/Mono?

I am looking for a cross-platform (.Net and Mono on Windows, MacOSX, and Linux) way to decode wav, mp3, or ogg files such that I can then play the decoded streams through DirectSound or OpenAL as desired. A solution that can decode either mp3 or ogg would be sufficient -- decoding both is not necessary. If it (or another solution) can d...

sqlite, mono, C# cross platform

I am using sqlite in my C# project. MoMA complains about the DLLs and i am unsure what to do on the mac/linux side. What are things i generally need to do when porting external DLLs? ...

Is there a way besides Mono to run Microsoft .NET on a Mac or Linux?

I'm currently deprived from any Windows machine, and Mono doesn't run my application. Is there another way that might get around any reason why Mono wouldn't work? (I don't have the error message at the moment.) ...

Mono XSP License

First of all I'm sorry for such a question, I look over the internet and google searches but there so many different ideas out there. In a mail-list I actually see that people claim that one need to buy Mono license to use it in a commercial tool. Can I use Mono XSP in a commercial tool, does licensing permits that? I'm not good with r...

Anyone have experience using CSLA under Mono?

I have a great deal of respect for Mono and CSLA. I would like to utilize CSLA on non-Microsoft operating systems. I accept the fact that Mono will always be two steps behind Microsoft, but Mono supports enough of the .Net framework to facilitate a wide range of interesting applications. I also realize that Mono does not support many ...

What's a good brief introduction to Mono/.NET programming?

Hello, I am quite impressed by the Mono features, especially by the portability of the library. I think I'll give it a try soon or later and I'd need some directions to find an introduction to Mono/.NET programming. Can you help me? Thank you ...

Possible to include Mono Runtimes in OSX .app bundle?

I'm looking to work on an application that needs to run on both Windows and OSX. Since I'm already very familiar with C#/.NET I thought I would take a look at using Mono. But I also want it to very easy to install and don't want the users to have to install the Mono package separately. Is it possible to create an OS X .app bundle that...

What's the point of Mono on Windows

This may be a dumb question...but I was just looking into the Mono project and they have a section about installing Mono on Windows. But, since Windows obviously already has the .NET runtime can anyone tell me what exactly is the point of having Mono for Windows? Does it help with cross platform development or something? ...

Bundling the Windows Mono runtime with an application.

Regarding my earlier question about the Point of Mono on Windows, let's say that I develop an app against the windows mono runtime so that it will also run on Linux, OSX, etc.. and to make it more complicated, I use GTK# so that I don't have to deal with WinForms. Is there then an easy way to bundle the Windows Mono runtimes with my Win...

WinForms vs GtkSharp with Mono

When developing with Mono for an app to be run on Windows and Mac OSX (and maybe Linux) which would you suggest, WinForms or GtkSharp for the GUI and why? Specific examples and success/horror stories would be much appreciated. ...

Anybody cross compiled Mono for MIPS 64 using uClibc?

I am trying to statically cross compile Mono for MIPS. I am able to compile Mono, but it is always dynamically linked with it's dependencies, even though I specify static to the compiler. I wrote a test program and I am able to statically compile it with my toolchain and run it on the target platform. I am not sure if I am missing som...

Creating a Mono binary install package for CentOS 5.2

Hi, All I'm new to Linux but have to port a asp.net app to Linux platform. (CentOS 5.2) I downloaded the mono source files and manually build them on my dev box, because there's no aviable Binary package for CentOS 5.2 (almost the same as RedHat), the app works well on the dev box. The next step is to setup the production server, whic...

Storing C# Service Settings in Windows & Mono

I'm writing a C# service that I want to be able to use on Windows and Mono. I've just started experimenting with Mono and am trying to determine the best way to store settings to control the service that works for both Windows and Mono. Settings file where service is installed Pros: Same code for each platform, easy to find for editi...

How to implement a multi-platform multimedia application?

On which technological basis would you implement a multimedia app, which has to meet the following requirements: Platforms: Windows XP/Vista, Mac OS X, Linux (nice to have) Should play audio (mp3) and video (H.264 would be great) from local disk I looked into things like Cocotron which is a cross-platform Objective-C API similar to C...