Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Learning ASP.NET MVC on Mac OS X

I realize this is a bit insane, C# being a Windows language and all, but I want to start learning C# mostly because I'm interested in ASP.NET MVC. I work as a web developer by day and my office is completely run on *nix machines. The developers and all other staff use Mac OS X and our servers are all some variation of Linux.

To be honest I just want to try something different than PHP, Python, or Ruby. The catch is that I don't want to give up my beloved Mac OS X. I've looked at Mono a bit and it seems like exactly what I am looking for. Unfortunately MonoDevelop is very slow to the point of uselessness on Mac OS X. (Unless I'm doing something wrong which is entirely plausible).

So my question boils down to this: What is the best way to code and compile C# apps on Mac OS X. (Running the code is not that big of issue, I'll probably just get some cheap server space to run my ASP.NET MVC apps on. I'm not really looking to run any apps on Mac OS X.)

like image 396
joshwbrick Avatar asked Dec 11 '09 15:12

joshwbrick


People also ask

Can ASP NET MVC run on Mac?

ASP.NET Core runs on the latest evolution of the . NET platform and runtime. It's been tuned for fast performance, factored for small install sizes, and reimagined to run on Linux and macOS, as well as Windows.

Can you learn .NET on Mac?

NET Core on Mac and Linux, you'll learn exactly what . NET Core offers on those platforms. First, not only will you see how to use the . NET Core command line interface and the cross platform editor Visual Studio Code to create .

Is ASP NET MVC hard to learn?

It's really difficult to try and learn an entirely new language/framework under pressure. If you're required to deliver working software for your day job, trying to learn ASP.NET Core at the same time might be heaping too much pressure on yourself.


4 Answers

In my own experience as a C#/Windows/ASP.Net developer the greatest strength of the platform is the integration with the tools. That said it is difficult to get it all running on mono. Mono would be an excellent deployment platform. But if you want to learn asp.net MVC your best bet is to set up a virtual Windows environment and get the free visual web developer visual studio: http://www.microsoft.com/express/vwd/ .

The other reason is that if you're trying to learn the platform, most resources will use some variant of Visual Studio. I find it rather difficult to try and learn a framework and have to struggle with platform differences at the same time.

I say this as an avid OS X user that has done C# development for several years and has done several small projects in asp.net mvc.

like image 151
Min Avatar answered Oct 24 '22 01:10

Min


what about running a virtual Windows machine on your Mac?

see http://www.parallels.com/eu/products/desktop/

like image 37
jao Avatar answered Oct 24 '22 02:10

jao


+1 to Min's answer.

The tools Microsoft provides (free and purchased) are amazing and integrate very well. The more I use Visual Studio, the more I love it.

I highly suggest doing your dev for ASP.NET/C# on Windows (bootcamp or vmware or w/e).

Having to switch between OSes when you want to code is a small price to pay compared to the potential compatibility headaches you might face in the future.

like image 27
Omar Avatar answered Oct 24 '22 02:10

Omar


I'd add to the virtualisation argument. If you were to go for a Windows installation in VMWare Fusion, for example, you can run it in coherence mode. In this mode, you still get all the apps and system you know and love in OS X, and make Visual Studio appear as if tit were a native OS X app. VS, though, "sees" the Windows environment, so you get the benfits of developing on Windows.

Of course, you have the overhead of having two OSs competing for resources, but most of the time this is not an issue (It isn't to me, anyway, and I run my own projects at home this way on a humble MacBook)

like image 43
ZombieSheep Avatar answered Oct 24 '22 03:10

ZombieSheep