In an attempt to port Inlage to Linux, one major problem is to support docking. Docking is done using Windows hooks from C#. Docking is not impossible as it was exhibited by Eclipse (the IDE) and also by wxWidgets (wxAUI video: www.kirix.com/labs/wxaui.html).
The questions is, is it possible to easily port the C#-based (windows hooks-b...
We are planning to develop a Silverlight 'cross platform' application, that is expected to run on both Windows and Mac with elevated permissions. Mono alone is not an option, as the application requires Silverlight specific video features, supported only in SL 4.0
So, here are some considerations.
1 - The 'Application', should interfa...
(This may not be the site for this issue however i've already asked in the official mono forums and got no response)
Hello:
I have a GTK Label with useMarkup set to true and it works perfectly in Ubuntu 10.04 however in Windows 7 x64 it just shows the plain html text and not the representation of it
(Both my Ubuntu and Windows PC's ha...
I'm installing Mono 2.6.7 on a Mac 10.4.7, and running across few issues. I've solved some of them by updating few libraries via MacPort, but this one is the latest.
When I start Mono, it crashes. Any help is appreciated.
dyld: lazy symbol binding failed: Symbol not found: _strerror$UNIX2003
Referenced from: /Library/Frameworks/Mono...
Hello Experts
I am working on a project that will run on a small linux platform. All applications on the system must be written in c# that will be executed via mono. But that is causing me some problems with the network information port. All the examples I have been able to find on the topic on the internet is for .net, and it seems tha...
When I tried to run a binary (exe file) that was made with Visual Studio 10 from mono 2.6/Mac, I get the following warning.
WARNING: The runtime version supported by this application is unavailable.
Using default runtime: v1.1.4322
How can I disable this message with mono? Is there a way from Visual Studio not to show this message wi...
This page explains about the four different mono compilers - mcs/gmcs/smcs/dmcs.
To me, it's a little bit weird to have four C# compilers, as normally, the newer version of compilers maintain backward compatibility.
I assume that's because of the runtime support issues, but Microsoft's C# might have the same problem with only one cs....
Hi!
I an earlier thread I got some help to track down a deprecated .Net assembly reference and I was successfully able to port my project to build within Visual Studio 2010.
Is there any option to get this ReportViewer to work within Mono? Building the project with MonoDevelp 2.2.2 currently gives me similar errors:
Assembly "Microsof...
How do i enable debugging/stacktrace with filenames and numbers with apache2/mod_mono? Instead of filenames and numbers i get something like this
at System.Web.StaticFileHandler.ProcessRequest (System.Web.HttpContext context) [0x00000] in <filename unknown>:0
I tried using MonoDebug true in apache and recompile mod_mono with --enable...
Hi,
I am using "Mono Tools for Visual Studio - 2.8". When I am creating Package of mono it requires 'mono.exe' but it does not exist on my system. How can I get mono.exe OR there is any other way to make Package for the Linux.
I want to run my windows application on Linux and Mac.
...
Which of these languages is better for opengl game with primary platform linux?
I would like if you compared them in performance and libraries support.
...
I'm trying to convert an ASP .NET MVC 2 app to run on nginx/mono 2.8. So far it seems to work quite well except that the default route doesn't work when the path is empty. I am proxying all requests through to the fastcgi server and I get served up with an ASP .NET 404 not found page.
i.e. This doesn't work
http://mysite.com
But this...
I have F# 2.0.0 installed, and use mono 2.8.
let rec fib n =
match n with
| 1 | 2 -> 1
| n -> fib(n-1) + fib(n-2)
let n = 40
let x = fib(n)
printfn "%d" x
I compiled this code with fsc.exe to get fib.exe. Running this with mono fib.exe gives me this error.
mono fact.exe
Could not load file or assembly 'FSharp.Core, Ve...
Let's say I have the following function.
let rec fib n =
match n with
| 1 | 2 -> 1
| n -> fib(n-1) + fib(n-2)
How can I compile this code into dll so that it's used from C#?
I use both mono (in Mac OS X) and Visual Studio 2010.
ADDED
I added the following to make namespace.
namespace MyMath.Core
module public Process...
I tried to use gacutil (mono) for IronPython, but I got the following error.
sudo gacutil -i IronPython.dll
Password:
Failure adding assembly IronPython.dll to the cache: Strong name cannot be verified for delay-signed assembly
What does this mean? Any solution to this problem?
...
Hey folks,
I´m currently trying to get a MVC 2 (.NET 4.0) application running on Mono, but I´ve got some problems with the XSP server.
Everything is fine, when I press the "Run" button in MonoDevelop. My application starts using the correct version of ASP.NET:
Mono Runtime Version: 2.8 (tarball Tue Oct 5 14:16:19 MDT 2010); ASP.NET Ver...
I have the following IronPython code.
class Hello:
def __init__(self):
pass
def add(self, x, y):
return (x+y)
I need to call this from C#, and I came up with the following code.
using System;
using IronPython.Hosting;
using IronPython.Runtime;
using IronPython;
using Microsoft.Scripting.Hosting;
using Microsof...
I use swig 2.0.1 + mono 2.6/2.8 on Mac OS X 10.6.4.
The overall build is OK, and the build of the C# examples is also OK. The problem is that when I run the example (mono runme.exe), I always get the following errors.
Unhandled Exception: System.TypeInitializationException: An exception was thrown by the type initializer for example...
I am trying to try DBLinq with the sqlite provider inside a simple ASP.NET web
service. I am also using MonoDevelop 2.4 and Mono 2.6.7, The project
in monodevelop references the DbLinq.dll which by default is set to be
Local Copy. I can compile the webservice just fine. By when I try to
run it from Monodevelop or using the xsp2 f...