Peter Aron Zentai
Peter Aron Zentai

Reputation: 11740

How .NET Core, Mono and ASP.NET are related on a non Windows platform?

This breaks down to some trivial sub-questions

I am confused, becasue I started at the .NET Core site, followed links toward ASP.NET 5 RC that all the way mentions Mono.

Upvotes: 1

Views: 405

Answers (1)

mason
mason

Reputation: 32694

Is .NET Core a Mono alternative?

Yes, in the sense that .NET Core is also a cross platform framework. The difference is that Mono is an implementation of the full .NET framework, while .NET Core is only a subset of the full .NET framework (and their code diverges), and framework packages are obtained via NuGet.

Will ASP.NET 5.0 run with .NET Core or with Mono in an OSX/Ubuntu environment?

I can't speak for Mono, but ASP.NET 5 (which is soon to be renamed ASP.NET Core) will run on .NET Core on OS X (for development) and Ubuntu (for production or development) as well as Windows. ASP.NET 5 will also run on the full .NET Framework 4.6 on Windows.

Upvotes: 5

Related Questions