Questions tagged [nugetgallery]

Nuget gallery is the package manager for .net platform.

As per nuget.org -

The NuGet Gallery is the central package repository used by all nuget package authors and consumers. One can find a number of open source packages to be consumed in one's .net projects.

Nuget is a package manager for Microsoft's .net platform. The latest development on the gallery happens on github

69 questions
12
votes
8 answers

Package manager in Visual Studio 2015 "407 (Proxy Authentication Required)"

I understand this is an often asked question, however after days of research I've not found an answer to this particular problem. I have a new ASP.NET 5 (Core 1.0) MVC template that I'm trying to add a package to however each and every time I get…
11
votes
1 answer

How to remove alert message from NuGetGallery

I have installed NuGet on my machine, but I can't disable the Yellow Alert message "This is a development environment. No data will be preserved." I have changed in my web.config this key
JuChom
  • 5,717
  • 5
  • 45
  • 78
9
votes
4 answers

Visual Studio 2012 "Extensions and Updates" "Unable to connect to the remote server"

This has been the case unfortunatly for the past couple of months. I can't install new or update packages from Tools ==> Extensions and Updates I tried everything, yet I am unable to find the reason. I've tried : Access NuGet and download packages…
WeSam Abdallah
  • 1,050
  • 1
  • 10
  • 16
8
votes
1 answer

Powershell Find-Package command doesn't work with nuget v3 package source

As the title says I cannot use the Find-Package command with the nuget v3 url: https://api.nuget.org/v3/index.json If I run the command: Find-Package nuget.versioning -Source https://api.nuget.org/v3/index.json I get an error that no match was…
Spencer Ruport
  • 34,865
  • 12
  • 85
  • 147
8
votes
4 answers

NuGet Server With Caching

I have a build server that pulls nuget packages on every build, and currently have a NugetGallery deployed internally for custom packages. Right now that eats bandwidth like no tomorrow (not a huge deal, but I want to be kind and make things faster…
StrangeWill
  • 2,106
  • 1
  • 23
  • 36
7
votes
3 answers

Why am I getting "Unable to load DLL 'sqlite3'" in my WPF app?

I added what I thought were the necessary SQLite (and sqlite-net) packages to my app. On running it, though, I get an exception: System.DllNotFoundException was unhandled by user code HResult=-2146233052 Message=Unable to load DLL 'sqlite3': The…
5
votes
4 answers

NuGet staying 'Retrieving Information' or 'No results found' in VS 2013

All of a sudden, NuGet stopped working for all projects. I've tried it on 4 different computers in the office, and all of them stopped working. If I go to 'Manage NuGet Packages', it says 'No items found' when the node Online > nuget.org is…
Karl Cassar
  • 6,043
  • 10
  • 47
  • 84
5
votes
1 answer

Adding NuGet package present on hard drive (Not hosted anywhere) to a project

MY Task is to generate a NuGet package of one project containing static content and binaries. Then means by which this NuGet package can be consumed in another Project/ Solution. I have completed the first half of the task where i was able to…
Bhargava
  • 329
  • 5
  • 13
5
votes
1 answer

How to get prereleased packages list using Nuget.Core?

I'm trying to use Nuget.Core to find Microsoft.Bcl.Immutable package (it is currently in prerelease state). DataServicePackageRepository.SupportsPrereleasePackages always returns false and I can't find any way to change it. Id there a way to work…
controlflow
  • 6,667
  • 1
  • 31
  • 55
4
votes
2 answers

How to publish nuget package update?

Well, this is my first Nuget package I publish, it's as simple as any first.. I've published it through this command line: nuget push PKG.1.0.0.0.nupkg 0000000-000-0000-0000-0000000000 -Source https://www.nuget.org/api/v2/package but I don't know…
mshwf
  • 7,009
  • 12
  • 59
  • 133
4
votes
0 answers

CURL Nuget visual studio 2013 unresolved external symbol __imp__curl_easy_init referenced in function _main()

I follow this link (http://echorand.me/2012/01/27/picloud-and-rest-api-with-c-client/.) and I get some libraries from Nugget (CURL, curlpp, curlpp redist, curlpp symbols). But it have some error, unresolved external symbol…
Minhphuong Le
  • 153
  • 1
  • 2
  • 8
3
votes
0 answers

nuget.exe doesn't return all versions of specified package

I'm using the latest stable version of nuget.exe (4.3.0) and attempting to get all versions of a package. This returns only one version: nuget.exe list OBeautifulCode.Math.HashCodeHelper -allversions -prerelease -includedelisted -source…
Suraj
  • 35,905
  • 47
  • 139
  • 250
3
votes
1 answer

NuGet Server - Access custom private NuGet gallery based on dynamic Feed URL

I need to provide private NuGet patch for the customers. We have more number of customers. We are in the position to provide different NuGet Patch to all needed customers. Now, I have followed below approach for provide NuGet patch provided each…
Mathan Kumar
  • 116
  • 1
  • 6
3
votes
1 answer

When should NuGet Gallery search index update?

I have recently installed a local NuGet Gallery from the instructions on GitHub. It appears to be working correctly when I upload packages through the UI, but packages pushed using the command line don't show up in search results. In the packages…
infojolt
  • 5,244
  • 3
  • 40
  • 82
3
votes
1 answer

Using NuGet to push "All" packages in my solution to a shared drive?

I have recently setup a shared drive to act serve as my private Nuget repository. I wish to push ALL nupkg files from my packages directory to my shared drive. I managed to figure out this command: nuget.exe push ..\packages -source c:\testme Now…
Martin
  • 23,844
  • 55
  • 201
  • 327
1
2 3 4 5