简体   繁体   中英

How to install syncfusion javascript using nuget from visual studio community 2022 and visual studio code?

I tried the link here https://www.nuget.org/packages/Syncfusion.JavaScript/

Install-Package Syncfusion.JavaScript -Version 19.4.0.47

From inside VS 2022 community I can not find nuget GUI so I used the console and I get this在此处输入图像描述

I tried from nuget.exe and get this在此处输入图像描述

I tried in vs code I pressed Ctrl+Shit+P and typed nuget to install nuget GUI but nothing found. What I should do?

To install the NuGet packages in Visual Studio through package manager Console, run the command under Package Manager tab.

 Install-Package Syncfusion.JavaScript -Version 19.4.0.47

install-package-visual-studio

To install NuGet packages in the Visual Studio Code, please run the below command in the Visual Studio Code terminal which is under .NET CLI tab in the nuget.org

 dotnet add package Syncfusion.JavaScript –version 19.4.0.47

install-package-vscode

For more details to install NuGet packages in the application, please refer the below link: https://ej2.syncfusion.com/aspnetcore/documentation/nuget-packages/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM