安装特定版本的dnx

Zac*_*ras 11 dnx dnvm asp.net-core

我在使用dnx/k版本1.0.0-beta3设置的ASP.NET 5项目上工作.最近我干净安装了我的操作系统和VS并丢失了beta3软件包,我只安装了beta4.是否可以安装特定版本的dnx?我已经尝试过了:

dnvm install 1.0.0-beta3 等等

tug*_*erk 8

这里有几件事.其中一个是你有哪些饲料设置.运行dnvm以列出如下所示:

   ___  _  ___   ____  ___
  / _ \/ |/ / | / /  |/  /
 / // /    /| |/ / /|_/ /
/____/_/|_/ |___/_/  /_/
.NET Version Manager v1.0.0-beta5-10375
By Microsoft Open Technologies, Inc.
usage: dnvm  []

Current feed settings:
Default Stable: https://www.nuget.org/api/v2
Default Unstable: https://www.myget.org/F/aspnetvnext/api/v2
Current Stable Override: https://www.myget.org/F/aspnetrelease/api/v2
Current Unstable Override: 

如果稳定源上提供了要安装的版本,请运行以下命令:

dnvm install 1.0.0-beta4-11566
Run Code Online (Sandbox Code Playgroud)

这将从活动稳定Feed中安装1.0.0-beta4-11566.如果要从不稳定的Feed中安装特定版本,请添加-u开关:

dnvm install 1.0.0-beta4-11566 -u
Run Code Online (Sandbox Code Playgroud)

  • 尝试运行`dnvm update-self`来更新dnvm. (2认同)