Install/Update Ubuntu 上的 .NET Core 1.0,哪个包版本?
Install/Update .NET Core 1.0 on Ubuntu, which package version?
既然 .NET Core 1.0 已经发布,我想在 Ubuntu 上试用一下,但 the official install docs 仍然参考预览版 2:
sudo apt-get install dotnet-dev-1.0.0-preview2-003121
dotnet 包名称上的 Tab 补全 returns 215 个结果,其中 "major" 个版本显示为 "beta"、"preview1"、"preview2"、"preview3" 和 "rc2",每个都有许多可用的内部版本号。
This Roadmap 意味着 "RC2" 是最新的(根据这些术语的通常定义,这是有道理的)但它也有许多可用的构建,其中大部分但不是全部都是数字可排序。
那么我是只安装最新版本(dotnet-dev-1.0.0-rc2-002678
在我写这篇文章时)还是有一些可用的跟踪元数据包?官方文档真的已经过时了吗?或者 preview2-003121
是 Ubuntu 14.04 上的 "blessed" 版本?
您应该按照您在 https://www.microsoft.com/net/core 链接到的指南安装 dotnet-dev-1.0.0-preview2-003121
。该指南应该始终是最新的。
造成混淆的原因是.Net Core 本身是 1.0 版本,但创建、构建和发布 .Net Core 应用程序和库(包含在 .Net Core SDK 中)的工具仍在预览(特别是预览 2)。 From the .Net Core 1.0 announcement:
There are two main distributions for .NET Core:
- .NET Core – Includes the .NET Core runtime and framework. The current version is “.NET Core 1.0”
- .NET Core SDK – Includes .NET Core and the .NET Core Tools. The current version is “.NET Core SDK 1.0 Preview 2”.
The .NET Core Tools are considered “Preview” currently. We chose “Preview” because we are not yet done shaping the tools. We know that there are still some changes coming.
您链接到的 ASP.NET 路线图还说“1.0.0(工具预览 2)”是最新版本(它在时间表 table 中,但里程碑中没有提到主题部分)。
既然 .NET Core 1.0 已经发布,我想在 Ubuntu 上试用一下,但 the official install docs 仍然参考预览版 2:
sudo apt-get install dotnet-dev-1.0.0-preview2-003121
dotnet 包名称上的 Tab 补全 returns 215 个结果,其中 "major" 个版本显示为 "beta"、"preview1"、"preview2"、"preview3" 和 "rc2",每个都有许多可用的内部版本号。
This Roadmap 意味着 "RC2" 是最新的(根据这些术语的通常定义,这是有道理的)但它也有许多可用的构建,其中大部分但不是全部都是数字可排序。
那么我是只安装最新版本(dotnet-dev-1.0.0-rc2-002678
在我写这篇文章时)还是有一些可用的跟踪元数据包?官方文档真的已经过时了吗?或者 preview2-003121
是 Ubuntu 14.04 上的 "blessed" 版本?
您应该按照您在 https://www.microsoft.com/net/core 链接到的指南安装 dotnet-dev-1.0.0-preview2-003121
。该指南应该始终是最新的。
造成混淆的原因是.Net Core 本身是 1.0 版本,但创建、构建和发布 .Net Core 应用程序和库(包含在 .Net Core SDK 中)的工具仍在预览(特别是预览 2)。 From the .Net Core 1.0 announcement:
There are two main distributions for .NET Core:
- .NET Core – Includes the .NET Core runtime and framework. The current version is “.NET Core 1.0”
- .NET Core SDK – Includes .NET Core and the .NET Core Tools. The current version is “.NET Core SDK 1.0 Preview 2”.
The .NET Core Tools are considered “Preview” currently. We chose “Preview” because we are not yet done shaping the tools. We know that there are still some changes coming.
您链接到的 ASP.NET 路线图还说“1.0.0(工具预览 2)”是最新版本(它在时间表 table 中,但里程碑中没有提到主题部分)。