繁体   English   中英

Nuget 恢复命令行响应 Package is not found on source - Artifactory 云服务器

[英]Nuget restore command line responds Package is not found on source - Artifactory cloud server

我知道 NuGet 包在那里。 我可以在我的 Artifactory 页面上列出它们。 为什么我的nuget restore命令看不到它们?

我在 JFrog Artifactory 有一台服务器。 假设 URL 是https://companyname.jfrog.io/artifactory

我在该位置有一个 NuGet package 存储库。 该存储库称为“repo-name-local”。

我的 NuGet 包显示在https://companyname.jfrog.io/ui/repos/tree/General/repo-name-local

...并且它们出现在https://companyname.jfrog.io/ui/repos/tree/General/repo-name-local的存储库列表中

在该页面上,“文件的 URL”以https://companyname.jfrog.io/artifactory/repo-name-local/ 给出

我希望这三个 PowerShell 命令能够成功执行:

# Start with a clean nuget.config
git checkout nuget.config
# Add package source, username, password
.\nuget.exe sources add -name "Artifactory" -source https://companyname.jfrog.io/artifactory/api/nuget/repo-name-local/ -username foo -password bar -configfile .\nuget.config
# Restore packages
.\nuget.exe restore -Source "https://companyname.jfrog.io/artifactory/api/nuget/repo-name-local/;https://www.nuget.org/api/v2" -ConfigFile .\nuget.config -Verbosity detailed .\Something\Something.sln

前两个命令成功执行,但第三个给出以下响应:

WARNING: Unable to find version '31.3.0.1035' of package 'GemBox.Spreadsheet'.
  C:\Users\rdepew\.nuget\packages\: Package 'GemBox.Spreadsheet.31.3.0.1035' is not found on source 'C:\Users\rdepew\.nuget\packages\'.
  https://companyname.jfrog.io/artifactory/api/nuget/repo-name-local/: Package 'GemBox.Spreadsheet.31.3.0.1035' is not found on source 'https://companyname.jfrog.io/artifactory/api/nuget/repo-name-local/'.
  https://www.nuget.org/api/v2: Package 'GemBox.Spreadsheet.31.3.0.1035' is not found on source 'https://www.nuget.org/api/v2'.
  

我认为修改后的 URL 是必需的,但也许不是。 所以我稍微改变了命令:

# Start with a clean nuget.config
git checkout nuget.config
# Add package source, username, password
.\nuget.exe sources add -name "Artifactory" -source https://companyname.jfrog.io/artifactory/repo-name-local/ -username foo -password bar -configfile .\nuget.config
# Restore packages
.\nuget.exe restore -Source "https://companyname.jfrog.io/artifactory/repo-name-local/;https://www.nuget.org/api/v2" -ConfigFile .\nuget.config -Verbosity detailed .\Something\Something.sln

响应略有不同,但仍然不成功:

WARNING: Unable to find version '31.3.0.1035' of package 'GemBox.Spreadsheet'.
  C:\Users\rdepew\.nuget\packages\: Package 'GemBox.Spreadsheet.31.3.0.1035' is not found on source 'C:\Users\rdepew\.nuget\packages\'.
  https://companyname.jfrog.io/artifactory/repo-name-local/: Failed to fetch results from V2 feed at 'https://companyname.jfrog.io/artifactory/repo-name-local/FindPackagesById()?id='GemBox.Spreadsheet'&semVerLevel=2.0.0' with following message : Response status code does not indicate success: 404 (Not Found).
  Response status code does not indicate success: 404 (Not Found).
  https://www.nuget.org/api/v2: Package 'GemBox.Spreadsheet.31.3.0.1035' is not found on source 'https://www.nuget.org/api/v2'.

为什么nuget restore命令都失败了? 为什么他们看不到存储库内容?

我遇到了类似的问题,通过为 nuget repo 启用强制身份验证来解决。

Nuget 设置

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM