mono

Are there any real limitations in Mono regarding ASP.NET?

I am a junior developer, doing my last year at college. I'm mostly asp.net oriented and even have a part time job coding in that language. I am interested on converting to linux and since visual studio is unsupported write my code in Mono. Are there any notable limitations in Mono that I should be aware of (regarding ASP.NET)? ...

How to instal libgluezilla for MAC OS X

I am trying to run a Mono application on the Mac that has an embedded web browser control. The program runs, but now broswser is show and a message is output: libgluezilla not found. To have webbrowser support, you need libgluezilla installed I have searched, but have no idea how to install this. Your guidance would be appreciated. ...

MEF on Mono doesn't work properly?

I've made a very simple MEF sample which runs on .NET, but doesn't work properly on Mono. using System; using System.Collections.Generic; using System.Text; using System.ComponentModel.Composition; namespace Vialis { class Program { [Import(typeof(ILedController))] public List<ILedController> Controllers ...

Calling mono c# code from Microsoft .net ?

I have some neural net code written in c# that would benefit from using SIMD support. Mono 2.2 just came out that supports SIMD but Microsoft's c# does not support this yet. Being happy with my c# setup I was wondering if I could write a lib in mono for that piece and call it from .net. Edit: I guess what I really want to know is it po...

Quality Mono/ASP.NET Dev environment on Windows?

What is the best setup for developing ASP.NET/C# apps on Windows with the Mono runtime rather than VS and the MS runtime? Ideally, I'd like to have the full mojo - autocomplete, debugger, Unit Tests and Apache/mod_mono or some other web server equivalent... ...

How do I embed Gecko using gecko-sharp on Mono/Windows?

Gecko is the rendering engine for Firefox. Using gecko-sharp it is possible to embed it to any Mono/GTK# program. There is a sample application called GladeSharpBrowser for doing this. I could manage to build it using a modified project file, but it is crashing. This sould help you reproduce the problem: I have used SharpDevelop 3.0 and...

Licensing your code in Mono

I'm working with some code in Visual Studio. My parter-in-crime fellow developer has suggested that the code also be available to work under Mono. I'm impresed witht he work that is already done in Mono, but I'm very new to Mono, so I don't know what it can/cannot do. I've already written a class in C# using the .NET LicenseManager obje...

Am I allowed to host an ASP.NET MVC website using Mono and mod_mono?

I heard somewhere that the MVC license prevents you from using it on non-microsoft technologies, which would prevent me from developing in mono and hosting in Linux. Is this true? Has anyone used it with mono? Can anyone point me in the direction of the license? ...

GTK# Common pitfalls

Hey guys i'm really contemplating starting my next project as a C#/MONO/GTK# Combination. In the past i never picked up GTK because everything built with GTK seemed to look horrible, i'm a bit of an OCD when it comes to visual representation. However tons of application (think Banshee, The VMWare Console ) have clearly proven my biased ...

How do I get the available wifi APs and their signal strength in .net?

Is there any way to access all WiFi access points and their respective RSSI values using .NET? It would be really nice if I could do it without using unmanaged code or even better if it worked in mono as well as .NET. If it is possible i would appriciate a code sample. Thanks Here are a few similiar stackoverflow questions i found: ...

How would you license your Mono code?

For C# in a winForms environment, I've licensed my classes by writing specifics to the regestry, encrypted. Under Mono there are some facilities that are not available to you. The Registry is one of those. What method would you use to license your code under Mono? I don't want a malicious user to be able to delete the application direc...

Mono feature complete

Does Mono miss any functionality from .NET? If not, when will we see official MS recognition for it, like including Mono platforms in the Platforms section on MSDN? It seems like they are seen as separate things. ...

Cross platform programming on Windows

Two Questions: Is there any way to write cross platform programs on Microsoft Visual Studio? If there isn't then could I write a C# application on VS2008 and recompile it with MonoDevelop and have it work? ...

Deploying Mono applications to Windows

What difficulty would be encountered in deploying a Mono-based application to Windows? Does the Mono runtime have to be installed along with the application? Would this be an inconvenience for the end user? Edit: The idea is to deploy a cross-platform application, thus Mono as a choice. ...

Does anybody use Mono for commercial development?

I know that Mono is supposed to be a .NET implementation for Linux/Unix. But I don't see even close level of exhilaration that is currently around .NET (on Windows). What's wrong with Mono then? ...

With this technology, would it be possible to compile and run silverlight IL in Flash?

I don't really understand this article. But it sounds like you can compile C/C++ for flash. If that's possible, how hard would it be to compile and run Mono inside flash? Sounds stupid I know...maybe I'm going crazy with my age. ...

How mature is Mono?

How mature is the mono project atm? I've browsed their site but didn't find any indication of how feature complete mono is towards .NET 3.5 / SP1 ? Duplicate of Is Mono Ready for Prime Time? ...

Executables Built in Mono on Windows

I know that binaries built in Windows don't need to be recompiled for linux machines with Mono. Does it work the other way around? Are binaries built with Mono on linux machines runnable on Windows with just the .NET Framework? ...

Broken Mono C# code using System.Windows.Forms

A couple of months back I started a relatively simple C# app which I was compiling with Mono. I try to resume work on this today, and despite having an executable proving it compiled fine before, it is now complaining about System.Windows.Forms C:\Program Files\Mono-2.0.1\bin>mcs ../projects/test_1/test.cs ../projects/test_1/tes...

Crossplatform way to change screen resolution

Is there any crossplatform way (Windows, Linux, MacOSX) to change screen resolution? Neither Java nor .Net-Mono can do it. Only through native API invocation. It's very strange situation: there are clear (managed) methods to obtain screen resolution, but method for setting is absent. Is this feature very dangerous or complicated? Does a...