我有一个NuGet存储库,正在将其从公共访问转换为经过身份验证的访问。
我使用NuGet Sources add -name [repo_name] -Source [source_url] -UserName [username] -Password [password]
向本地NuGet.config文件添加身份验证。
这样做之后,我可以在VisualStudio项目上运行命令dotnet build
时下载软件包。
但是,我无法再像关闭关闭对存储库的匿名访问之前那样运行命令dotnet build --source [source_url]
来下载软件包。当我尝试时,出现如下错误:
error NU1101: Unable to find package xunit. No packages exist with this id in source(s): nuget-sdet
为什么将--source [source_url]
添加到dotnet build
会阻止其下载软件包?