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
2
votes
0 answers

When I am adding MvcSiteMapProvider.MVC4 System.Web.Mvc version difference error is coming

I am adding MvcSiteMapProvider in my sample site using Package Manager console like PM> Install-Package MvcSiteMapProvider.MVC4 but after installation completion facing below Error. i.e. uses 'System.Web.Mvc, Version=4.0.0.1, Culture=neutral,…
Shan k
  • 199
  • 1
  • 13
2
votes
1 answer

Install specific dlls from nuget package

I have a .sln package named MySolution. In that Package I have some dlls, like: MySolution.sln \one.dll \second.dll \another.dll I want to install only specific dll to my another Project, so they will add as reference to my Project. I m…
Michael Riva
  • 531
  • 1
  • 7
  • 16
2
votes
1 answer

Team City Custom NuGet Package Restore Not Occurring

I am currently switching our builds from Cruise Control to Team City and am encountering an issue trying to restore my custom NuGet package for a component that is used across several of my projects. The component is called Connector Base. I have…
UberNerd1.0
  • 123
  • 2
  • 11
2
votes
2 answers

Proget symbol server: Downloads pdb but says no debugging symbols found

So I'm on the latest version - Proget 3.0.3 build 1 Whatever I do, I cannot get Proget to act as a symbol server. not sure if this is VS2012/Proget or both. To review: Package and symbols have been uploaded to Proget manually. Verified that Proget…
Raghu
  • 1,140
  • 1
  • 14
  • 22
2
votes
1 answer

Packages not appearing in proget feed

I am using proget to upload packages, I am manually uploading from disk, but when I go to check if the package exists in the feed it isn't there. When I logon to the server which is hosting proget and go to the PackagesRootPath I can see the package…
Paul
  • 1,457
  • 1
  • 19
  • 36
2
votes
1 answer

How do I connect to Nuget online repository using Nuget API?

I am trying to connect to Nuget Online repository using a HTTP URI. I am using PackageManager object and supplying it with DataServicePackageRepository object in the constructor. It does not seem to fetch the list. What I might be doing wrong…
fahadash
  • 3,133
  • 1
  • 30
  • 59
2
votes
2 answers

Error When Upload to Local/Private nuget gallery

I just setup a private/local nuget gallery. I created my first package using the instructions mentioned in http://docs.nuget.org/docs/creating-packages/creating-and-publishing-a-package However I am getting the following error when i try to upload…
Aidin
  • 2,134
  • 22
  • 26
2
votes
1 answer

Nuget custom server returns 404

I am trying to setup nuget custom server, and cannot get it list my packages. Here is list which I verified: Server updated to .net 4.5 OS is Windows Web Server 2008 R2 Application pool is set to integrated, dotnet set to 4.0 modules…
st78
  • 8,028
  • 11
  • 49
  • 68
2
votes
3 answers

How to avoid nuget authentication when pushing package?

while pushing a nuget package to a local feed at http://localhost/site, it asks for credentials. eg: nuget push ‘OracleDataAccess.1.0.0.nupkg’ -s 'http://10.xx.xx.2/SNNuget/mykey' I am able to browse the feed directly and see the packages that I…
ChristopherJ
  • 51
  • 1
  • 5
2
votes
2 answers

NuGet Package Restore doesn't work

I have added a NuGet package to my solution and enabled package restore on the solution. This correctly created the .nuget folder with targets file etc. The NuGet package is actually another project which becomes a dependency in the solution. …
jaffa
  • 26,770
  • 50
  • 178
  • 289
2
votes
1 answer

Configuring Nuget.Server to act as an Orchard CMS module feed

We need a private module feed for Orchard. I'm a bit of a novice when it comes to web services, but the problem we seem to be having is in the different schemas. I set up my remote feed as per Creating Remote…
Ben Power
  • 1,786
  • 5
  • 27
  • 35
2
votes
1 answer

Local nuget server: 405 Method not allowed

I've configured a local nuget server as described here: http://docs.nuget.org/docs/creating-packages/hosting-your-own-nuget-feeds I can browse to it and look at the feed. But I can not publish packages to it. I just get error 405 all the time. I've…
jgauffin
  • 99,844
  • 45
  • 235
  • 372
2
votes
0 answers

IIS Rewrite 2.0 CustomTags with namespaced attribute

I'm hosting a private NuGet server which is behind a load balancer. The load balancer accepts ssl traffic (442) and forwards to port 80 on the web server. NuGet looks to be detecting the requesting protocol and returns a base href with http vs.…
2
votes
1 answer

Is there a way to support nested UNC paths for nuget package source?

In our environment we currently have a nested folder structure that holds our assemblies. For example: \SERVER\Assemblies\SomeCompany\MyRockinAssembly\v1.0.0.0\MyRockinAssembly.dll We are looking into creating NuGet Packages for all the good reasons…
Jay
  • 2,644
  • 1
  • 30
  • 55
2
votes
1 answer

How can I block users from accessing a certain ProGet feed?

I am using ProGet 1.0.9 and I can't figure out how to block a certain set of users from accessing a NuGet feed. I still want these users to be able access all the rest of the feeds, I just want one particular feed to be denied. Does anyone know how…