1

This breaks down to some trivial sub-questions

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

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

4

1 回答 1

5

.NET Core 是 Mono 的替代品吗?

是的,从某种意义上说 .NET Core 也是一个跨平台框架。不同的是,Mono 是完整的 .NET 框架的实现,而 .NET Core 只是完整的 .NET 框架的一个子集(并且它们的代码存在分歧),并且框架包是通过 NuGet 获得的。

ASP.NET 5.0 将在 OSX/Ubuntu 环境中与 .NET Core 或 Mono 一起运行吗?

我不能代表 Mono,但 ASP.NET 5(即将更名为ASP.NET Core)将在 OS X(用于开发)和 Ubuntu(用于生产或开发)以及 Windows 上的 .NET Core 上运行. ASP.NET 5 也将在 Windows 上的完整 .NET Framework 4.6 上运行。

于 2016-01-20T19:43:51.207 回答