Live data from Hacker News

Mono 2.4 and MonoDevelop 2.0 released

tirania.org

1–10 of 12 posts

Re: Mono 2.4 and MonoDevelop 2.0 released

#2
I've been using Mono for about 3 years now, and I must say C# is great. Mono has gone a long way, and it is pretty solid now. I really love the fact that I can use the same language, and same libraries, for Desktop Applications, command line tools, and to create a web site. The option to be able to create standalone program (no need to have the Mono libraries installed on the client) is also a great plus.

Re: Mono 2.4 and MonoDevelop 2.0 released

#5
post #4

You know what, i love the idea of mono and i did a lot of c# projects. But I just don't trust enough mono to build my stuff on top of mono.

Isn't it compatible with the Microsoft variants? I mean, isn't that the point? Shouldn't you be able to build on Microsoft tools and then compile on Mono for other platforms? Or am I completely missing the boat?

Re: Mono 2.4 and MonoDevelop 2.0 released

#6
Has anyone built any cross-platform games with Mono? I'm working on a little hobby project that I'd like to release in an installable version for Windows and Mac OS X, and I'm not really sure where to start. I've been so deeply rooted in the UNIX world for so long that I don't even have a guess about good solutions to Windows/Mac desktop application problems.

Re: Mono 2.4 and MonoDevelop 2.0 released

#8
post #6

Has anyone built any cross-platform games with Mono? I'm working on a little hobby project that I'd like to release in an installable version for Windows and Mac OS X, and I'm not really sure where to start. I've been so deeply rooted in the UNIX world for so long that I don't even have a guess about good solutions to Windows/Mac desktop application problems.

This uses mono as a scripting engine, it's a pretty advanced game engines and there are quite a few games that use it: http://unity3d.com/

It supports both windows and os x.

Re: Mono 2.4 and MonoDevelop 2.0 released

#9
post #5
post #4

You know what, i love the idea of mono and i did a lot of c# projects. But I just don't trust enough mono to build my stuff on top of mono.

Isn't it compatible with the Microsoft variants? I mean, isn't that the point? Shouldn't you be able to build on Microsoft tools and then compile on Mono for other platforms? Or am I completely missing the boat?

That is exactly the point, however last year I had an existing .NET build that I wanted to port over to linux - it was developed with VS2005 / .NET 2, so should have been fairly trivial to port.

The issues I ran into were many (eg windows forms, data access being not or only partly implemented) so I just gave up and ran the original .NET in a windows virtual machine, rather than mangle it to work with gtk#.

So in principle it is an ideal idea that in practice has many issues due to MS driving .NET development and MONO having to play catch-up and then attempt to mangle the windows-specific code to be cross-platform. YMMV.

Re: Mono 2.4 and MonoDevelop 2.0 released

#10
post #9
post #5

Earlier quoted context omitted.

Isn't it compatible with the Microsoft variants? I mean, isn't that the point? Shouldn't you be able to build on Microsoft tools and then compile on Mono for other platforms? Or am I completely missing the boat?

That is exactly the point, however last year I had an existing .NET build that I wanted to port over to linux - it was developed with VS2005 / .NET 2, so should have been fairly trivial to port. The issues I ran into were many (eg windows forms, data access being not or only partly implemented) so I just gave up and ran the original .NET in a windows virtual machine, rather than mangle it to work with gtk#. So in pri…

It's doing quite well, there are some areas that they aren't really focusing on, but before porting try running this tool: http://www.mono-project.com/MoMA It's a migration analyzer and it will help to identify incompatibilities.
Post reply on HN