我有一个dotnet核心项目,包含来自我的私人nuget源的包。
Windows机器上的 dotnet restore
工作正常。
Ubuntu计算机上的相同操作失败并出现错误
Unable to resolve 'my package name' for '.NETCoreApp,Version=v1.0'.
,其中my package name
是我私人nuget repo的包裹
在输出的Feeds used:
部分,我可以看到我的nuget源。
通过wget
可以获得Nuget Feed。
我在两台具有相同结果的计算机上尝试了dotnet restore
的不同选项。
如何诊断?这可能是sdk中的错误吗?
我能看到的唯一区别是:Windows上的dotnet --version
为1.0.3
,而Ubuntu为1.0.1
(最新可安装)
答案 0 :(得分:0)
一切正常:sudo apt-get update
。