最近在一个官方的。net框架博客中宣布。net Core将会开源。
具有讽刺意味的是,作者提到。net Core是什么将在下一篇文章中解释。更多细节将在另一篇公告中提及。
从提供的图表:
和文章文本本身,我认为。net Core(除了像开源这样明显的东西)是完整的。net的模块化重新实现。也就是说,框架组件是根据需要加载的,就像现在加载NuGet包一样。现在是ASP。NET 5是其中一个已经实现的模块。我对。net Core的理解正确吗?也许我遗漏了什么?
我发现了一篇最近的文章,我觉得既短又好。它涵盖了。net标准、。net核心和。net框架以及它们之间的关系。我强烈推荐它。
当前的文档很好地解释了。net Core是什么,需要使用的区域等等。.NET Core有以下特点:
Flexible deployment: Can be included in your app or installed
side-by-side user- or machine-wide.
Cross-platform: Runs on Windows,
macOS and Linux; can be ported to other OSes. The supported operating systems (OSes), CPUs and application scenarios will grow over time,
provided by Microsoft, other companies, and individuals.
Command-line tools: All product scenarios can be exercised at the command-line.
Compatible: .NET Core is compatible with .NET Framework, Xamarin and
Mono, via the .NET Standard Library.
Open source: The .NET Core
platform is open source, using MIT and Apache 2 licenses.
Documentation is licensed under CC-BY. .NET Core is a .NET Foundation
project.
Supported by Microsoft: .NET Core is supported by Microsoft,
per .NET Core Support
下面是。net Core包含的内容:
A .NET runtime, which provides a type system, assembly loading, a garbage collector, native interoperability and other basic services.
A set of framework libraries, which provide primitive data types, application composition types and fundamental utilities.
A set of SDK tools and language compilers that enable the base developer experience, available in the .NET Core SDK.
The 'dotnet' application host, which is used to launch .NET Core applications. It selects the runtime and hosts the runtime, provides an assembly loading policy and launches the app. The same host is also used to launch SDK tools in much the same way.
我发现了一篇最近的文章,我觉得既短又好。它涵盖了。net标准、。net核心和。net框架以及它们之间的关系。我强烈推荐它。不幸的是,我没有时间去适应并把它放在这里。
原文回答内容如下:
因此,根据有关这一主题的最新官方词条,以下是我认为的一些关键点:
.NET Core本质上是.NET Framework的一个分支
实现也围绕保理关注点进行了优化。
我们认为。net Core既不针对。net Native也不针对。net Core
ASP。NET 5 - BCL和运行时是通用的和设计的
模块化。因此,它构成了未来所有。net的基础
垂直的线。
所以。net Native和ASP。NET 5只是一个测试新框架配置的“主题”,部分原因可能是因为它们非常不同:
看,它们甚至需要单独的底层,但BCL的一个主要部分仍然是常见的:
我们认为。net Core既不针对。net Native也不针对。net Core
ASP。NET 5 - BCL和运行时是通用的和设计的
模块化。因此,它构成了未来所有。net的基础
垂直的线。
例如,顶部的洋红色矩形将大量添加新的应用程序模型,但基础将保持通用。
NuGet部署:
相对于。net框架,.NET核心平台将是
作为一组NuGet包交付。我们决定使用NuGet是因为
这就是大多数图书馆生态系统所处的位置。
与当前框架的关系:
对于Visual Studio 2015,我们的目标是确保.NET Core是一个
纯。net框架的子集。换句话说,不会有
任何特征缺口。在Visual Studio 2015发布之后
. net Core的版本比. net Framework更快。这
意味着在某个时间点,某个特性只会出现
在基于。net Core的平台上可用。
简介:
The .NET Core platform is a new .NET stack that is optimized for open
source development and agile delivery on NuGet. We’re working with the
Mono community to make it great on Windows, Linux and Mac, and
Microsoft will support it on all three platforms.
We’re retaining the values that the .NET Framework brings to
enterprise class development. We’ll offer .NET Core distributions that
represent a set of NuGet packages that we tested and support together.
Visual Studio remains your one- stop-shop for development. Consuming
NuGet packages that are part of a distribution doesn’t require an
Internet connection.
基本上,我们可以把它看作是一个。net 4.6版本,但它的发布模型有所改变,同时,它也正处于开源的过程中。