Questions tagged [nuget-server]

Hosted or on-premise NuGet package repositories based on the open-source NuGet Gallery or NuGet.Server library.

A NuGet server usually is based on the NuGet.Server library, or based on the open-source NuGet Gallery.

NuGet servers are NuGet package repositories exposing a NuGet feed for consumption by a NuGet client and providing a way of securing and controlling access to the repository by means of an API-key, authentication and authorization.

As such, a simple network share containing NuGet packages should not be considered a NuGet server.

293 questions
1
vote
1 answer

ASP.NET Web Application Does not Autoredirect to Default.aspx

I have an empty ASP.NET Web application set up to serve a NuGet repository to our team. I created it as an empty web application and didn't do much else except add the NuGet.Server package to the solution and add a test package to the Packages…
tmoore82
  • 1,857
  • 1
  • 27
  • 48
1
vote
1 answer

Is it possible to host Nuget packages and symbols on the same server?

I have private Nuget server and recently I decided to add symbol packages. Unfortunately after I add symbols.nupkg files, server started to return following error: A single resource was expected for the result, but multiple resources were…
another_user
  • 3,590
  • 2
  • 12
  • 7
1
vote
0 answers

Using SymbolSource Community with Private NuGet Repo

We are trying to set up SymbolSource community (http://www.symbolsource.org/Public/Blog/View/2012-03-13/Releasing_the_community_edition_of_SymbolSource) to run alongside our private NuGet repo. The SymbolSource server is seemingly working. We can…
Sullivan
  • 161
  • 1
  • 8
1
vote
1 answer

Issues connecting to private NuGet server

We have a private NuGet server (v2.6) that uses HTTPS and Windows authentication and is running on IIS 7.5. I have some issues connecting to this server. Often the first time I pull up Manage NuGet packages it works, it shows me the packages on our…
Colin Mackay
  • 18,736
  • 7
  • 61
  • 88
1
vote
4 answers

What do I need to do to create a self hosted NuGet feed

I would like to create a custom nuget feed at work, but the computer that I want to host it from doesn't have IIS installed and I can't get it installed either. So I wanted to create my own self-hosted feed, but I'm not sure where to start. I…
scott
  • 2,991
  • 5
  • 36
  • 47
1
vote
1 answer

NuGet Get Latest Package From Feed

I have an environment where I'm building several library solutions in TFS. At the end of the build process the script packages them into a NuGet package and pushes them to our local feed. Now we can include these libraries, which change little…
Mike G
  • 1,956
  • 1
  • 30
  • 62
1
vote
3 answers

How to push my Nuget package to the official gallery having my package at my own server

I have a web public folder which I use when I want to share any file so I was thinking on having my nuget package there. I tried to push it using: nuget push Me.Utility.1.0.nupkg API_KEY -Source http://www.mywebpage.mx/packages then it asked me for…
gab
  • 325
  • 1
  • 12
1
vote
1 answer

Push to Nuget.Server fails after upgrade to 2.0.1

I upgraded a nuget.server that we use internally to 2.0.1 from 1.7. After upgrade push stopped working, it looks like it is working but the package is not pushed. After I runt nuget push ... I get the message "Your package was pushed." but nothing…
Tomas Jansson
  • 22,767
  • 13
  • 83
  • 137
0
votes
1 answer

Nuget server on IIS7 / Win2008 faults w3wp.exe

I realize this is borderline non-development, but I'm a developer trying to create a NuGet Server, not an IIS guy, so hopefully someone here has experienced this. I have some libraries used across several applications, so I wanted to make NuGet…
Rune Jacobsen
  • 9,907
  • 11
  • 58
  • 75
0
votes
0 answers

How do I request my customers to login in my private Nuget package server?

I have an ASP.NET MVC website where customers log in using ASP.NET Identity. I also have a private Nuget package server for my products (I followed these instructions to create it). How do I enforce login with ASP.NET Identity on the private Nuget…
abenci
  • 8,422
  • 19
  • 69
  • 134
0
votes
0 answers

How to get publisher Certificate Name for a given Nuget package from a nuget server

I need to get if a given list of packages hosted on a nuget server (ex: nuget.org) is signed by the publisher and if it is I need to have the name. This information is available on nuget package explorer view as follows (I only want the info in the…
0
votes
0 answers

Unable to install any NuGet packages to my .NET application

Unable to install any NuGet packages to my .NET application and getting below error. NuGet\Install-Package : Unable to load the service index for source https://api.nuget.org/v3/index.json. An error occurred while sending the request. The underlying…
0
votes
1 answer

Nuget restore from github package manager giving 403

We have a private set of nuget packages in GitHub. Until recently, I was able to restore packages from this repository and view them in the package manager. Now, I'm getting 403 errors: Retrying 'FindPackagesByIdAsync' for source…
Michael Witt
  • 1,582
  • 4
  • 22
  • 43
0
votes
0 answers

Add Nuget packages to private store the have dependencies on other stores

I have created a private Nuget store for internal dll to share among projects. These dlls have dependencies on packages from the main Nuget.org store. Is there way to tell the my packages that the dependency is located on a different store? Example,…
eweb
  • 27
  • 7
0
votes
1 answer

Nuget packages & Dotnet publish taking forever

Anybody is familiar with Nuget Packages in IIS server? I'm stuck with a serious issue from 3 days. I tried installing and pushing .nupkg file I have to nuget.org by making source as my local server by adding it as local feed. After this problem I…