如何在VSTS构建上设置myget凭据?

时间:2016-07-09 01:05:19

标签: azure-devops azure-pipelines myget

如何在Visual Studio Team Services构建过程中设置凭据以访问我的私有MyGet Feed?由于它不能正常工作,我的所有版本都开始失败。我在线阅读了一些内容,但他们提到了使用nuget的旧方式,我使用的是VS15的默认设置。

我已经读过这些:

这是错误: enter image description here

1 个答案:

答案 0 :(得分:2)

好吧,我明白了。 我解决的方式是:

  1. 创建了一个本地nuget.config文件
  2. 使用命令将我的私人订阅源保存到该文件[1]
  3. 已添加到源代码管理
  4. 在VSO
  5. 中的构建定义上设置nuget.config文件路径

    [1]

    nuget setapikey [apikey] -source [feedUrl] -configFile [configFilePath]
    nuget sources add|update -Name [name] -source [feedUrl] -User [username] -pass [password] -configFile [configFilePath] -StorePasswordInClearText