即使使用VS 2017 RC3,也无法使用Nuget CLI

时间:2017-02-10 06:36:25

标签: powershell nuget visual-studio-2017 nuget-cli

Nuget Distribution页面指出:

  

NuGet 4.x包含在Visual Studio 2017安装中。最新   NuGet版本作为Visual Studio更新的一部分提供。

     

包括电池!

看来这些电池是扁平的。在Package Manager Console和extenal PS窗口中,当我输入nuget时,我收到错误:

  

术语“nuget'不被识别为cmdlet的名称,函数,   脚本文件或可操作程序。

我该怎么做才能解决这个问题?如果它与VS 2017一起安装,那么肯定安装应该将它添加到PATH变量吗?

我不想使用VS命令控制台,即使它仍然使用2017年,因为我已经将我对该文件的所有使用都退回到PowerShell控制台。

1 个答案:

答案 0 :(得分:2)

我所要做的就是为我的用户和所有用户添加public class KendoColorPicker { private readonly string colorPickerSetColorExpression = "$('#{0}').data('colorpicker').value('#{1}');"; private readonly string idLocator; public KendoColorPicker(string idLocator) { this.idLocator = idLocator; } public void SetColor(string hexValue) { string scriptToBeExecuted = string.Format(colorPickerSetColorExpression, this.idLocator, hexValue); Manager.Current.ActiveBrowser.Actions.InvokeScript(scriptToBeExecuted); } } nuget.exe环境变量的位置,后者取决于你,但我总是按{{1}运行VS }}。

以前的圣贤过去总是建议不要这样做,但是MS在他们所有的神圣智慧中已经让使用VS的网络开发人员在非管理员帐户下变得如此困难,我看到提及这些建议,即使从那以后也是如此。在VD 2010附近甚至。

您认为将Nuget作为Visual Studio的一部分安装,他们至少可以将修改该血腥变量作为VS安装的一部分。