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
0
votes
1 answer

JFROG Artifactory OSS - Nuget Package source Type is disabled

How do I enable the NuGet Package source Type on creating Local/Remote/Virtual Repository? I have installed JFROG Artifactory OSS version(7.35.2) and when I'm trying to create Local/Remote/Virtual Repositories for NuGet, but I can't able to choose…
0
votes
1 answer

Finding missing nuget packages in local repository

I have a local nuget repository (Nuget Server). I need to upload packages from Nuget.Org to my local repository for offline building. How can I list all packages missing for some solution? I need it to list all missing packages and thier depedecies…
YanivR
  • 61
  • 5
0
votes
1 answer

How to push nuget package to an online server location

I have just created a .Net class library which I need to be converted to a nuget package. I can create a local path for the nuget and push it there. However, I need other members of my team to be able to access it so they can use it in their…
Josh
  • 1,660
  • 5
  • 33
  • 55
0
votes
0 answers

Unable to see newer Nuget packages. The old ones are still there

I have a Nuget package manager on our local server. The restore process of the pipeline in Azure Dev Ops attempts to fetch the packages, however it is unable to see the latest ones. We had a major DNS/Firewall issue last week and since then I am…
Username_null
  • 1,249
  • 2
  • 21
  • 29
0
votes
2 answers

AZURE: Can I host NuGet.Server in Azure?

I want to host a nuget.server to share private nuget packages with my dev team. This link: https://learn.microsoft.com/en-us/nuget/hosting-packages/nuget-server shows me how to build a nuget.server, but it says that it needs to run under IIS. Can I…
Joe
  • 1,091
  • 1
  • 11
  • 23
0
votes
1 answer

Adding NuGet server from Azure App Service(NuGet.Server) with AD Authentication results 401 unauthorized in VS2019 proffesional

I have created a nuget server project. nuget/hosting-packages/nuget-server and published it as an Azure App Service. So far, everything has worked fine. I added the server to Visual Studio and pushed some libraries to the server. The NuGet.Server…
0
votes
1 answer

NuGet.Server crash on startup

I setup Nuget.Server based on Visual Studio Project and Nuget.Server Package, and publish it to our IIS on Windows Server 2019. In Server, We can open the Website at http://ServerName:Port and everything is ok. but when we open this url from our…
mRizvandi
  • 983
  • 1
  • 8
  • 20
0
votes
1 answer

dotnet CLI “error: There are no versions available for the package 'myCustomPackage'.”

I've added my private source of packages that hosted on gitlab by this command dotnet nuget add source its done successfully and added to my list of sources, then I've pushed my packages on it, the packages are also up when I check them on gitlab…
Vahid
  • 474
  • 2
  • 7
  • 20
0
votes
1 answer

Private NuGet compatibility between different frameworks

We have several projects that we use in most all of our projects. We are wanting to move them to a private NuGet store. We have installed NuGet.Server and have it working with our .net framework versions of the projects. We also have most of…
Joel WZ
  • 100
  • 8
0
votes
1 answer

Nuget Sitefinity Repository down?

Is http://nuget.sitefinity.com/nuget working for you guys as a Nuget package source? We are getting the following error: This has been happening since January 19th 3 PM GMT.
Muhammedh
  • 484
  • 1
  • 11
  • 25
0
votes
0 answers

How to create a NuGet ApiKey with command

So I need a way to create a NuGet ApiKey from the console/command. Basically the idea is to automate a project's nuget package deploy. Ideal steps: User passes username/password to Jenkins(or sth else, Jenkins is what we use) Jenkins makes a…
0
votes
0 answers

Managing nuget updates in local nuget repository

Let's suppose there is a .NET Core project that has a reference to a nuget package say nugetD. That nuget package in turn have references to 3 other nuget packages say nugetA, nugetB and nugetC. The nuget packages are managed locally in a local…
Nemesis
  • 113
  • 2
  • 10
0
votes
2 answers

Non-proprietary Nuget Packages Showing in Nuget Server/Artifacts Feed

We are using Azure Devops to publish a private nuget server. Currently we have only published 5 of our own nuget packages, however a subset of third-party nuget packages are also showing. I do not have any upstream sources enabled. Is this normal…
voodoobilly
  • 405
  • 7
  • 18
0
votes
1 answer

how to call Package Manager Console and execute Find-Package in visual studio extension

I'm developing a visual studio extension(vsix). Now, I want to get a nuget package latest version. I only found one way by using Package Manager Console, dotnet CLI still not support search command. So, how can I call Package Manager Console and…
0
votes
0 answers

How a .NET project add a C++/CLI library from NuGet?

My project structure is: The main project is .NET framework 4.8, and the library develops by C++/CLI. I can add the file reference directly, it can work now. For some reason, we don't want to reference the file, so we want to use NuGet to get the…