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控制台。
答案 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 }}。
您认为将Nuget作为Visual Studio的一部分安装,他们至少可以将修改该血腥变量作为VS安装的一部分。