Visual Studio Nuget manager does not show OpenTK package - visual-studio

I am trying to add OpenTK as a dependency. When I open the Nuget Package Manager, the only Package source displayed is "Microsoft Visual Studio Offline Packages", so I went to Tools > Options > Nuget Package Manager > Package Sources and added the package source:
Name: nuget.org
Source: https://api.nuget.org/v3/index.json
I now get the following list of packages, but the OpenTK package is not there.

As a solution to installing packages that do not show up on the Nuget manager GUI, I can use the Package Manager Console which finds OpenTK without problem.
PM> Install-Package OpenTK

Maybe this is the package you need:
You can check if your scroll wheel is on the top and if there is any package you missed

Related

Visual studio package manager not installing the files to project

Using Visual studio 2022 with new project for .net 6 MVC if try to install any nuget package (via nuget package manger on project) the actual css files etc for the package are not installed but the nuget package manager shows that it is installed. Example if I install date picker it shows the package is installed but there is no files for it šŸ˜–

I get NuGet error when trying to install any package

I'm making a Windows form progect in Visual Studio.
When I trying to install any package through console I get error
Install-Package : Unable to find package 'PackageName' at source ''.
I tried both Visual Studio 2013 and Visual Studio 2019.
When I go to Nuget Browse I get error as well. I don't see any packages
According to your description, you can check your package scources under Tools > Options > NuGet Package Manager if you donā€™t have the correct package sources you can add this ā€œhttps://api.nuget.org/v3/index.jsonā€ such as:
Maybe try to add -source "https://api.nuget.org/v3/index.json" behind?

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/

Removing a NuGet package that isn't in my project?

I keep getting this warning in my VS2015 solution:
Some NuGet packages were installed using a target framework different from the current target framework and may need to be reinstalled.
The thing is, there are no NuGet packages in my solution. I had one, but I removed it, but I still get this.
Any ideas?
Removing a NuGet package that isn't in my project?
It seems that you have not properly removed that NuGet package.
To resolve this issue, please try to reinstall this package, then uninstall it.
Detailed:
Open the the Package Manager Console by Tools->NuGet Packager Manager->Package Manager Console, and type following command line to reinstall nuget package:
Update-Package -reinstall
After the re-installation is complete, type following command line to uninstall the package in the Package Manager Console:
Uninstall-Package <PackageID>
With this way, the nuget package will be moved from your project. If you have installed that package for multiple project in the solution, please use the uninstall command line for different default project in the Package Manager Console window:
Hope this helps.

NuGet restore enabled but I still get an error

Why do I get the following build output error when I already have NuGet package restore enabled?
Restoring NuGet packages...
To prevent NuGet from downloading packages during build, open the
Visual Studio Options dialog, click on the Package Manager node and
uncheck 'Allow NuGet to download missing packages'.
All packages listed in packages.config are already installed.
MyProject.csproj: error : This project references NuGet package(s)
that are missing on this computer. Enable NuGet Package Restore to
download them.
It only happens on one project.
I am using Visual Studio 2013 and NuGet 2.8.
Make sure to upgrade to the latest version of NuGet which does package restore automatically. See this post by David Ebbo for more information: http://blog.davidebbo.com/2014/01/the-right-way-to-restore-nuget-packages.html
You're going to want to delete the NuGet targets (delete the .nuget folder and then manually edit your .csproj files and remove the lines that import the NuGet.targets file). This is no longer needed. When you compile your solution, NuGet will restore it.

Resources