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

How to setup myget credentials on VSTS build?

如何在我的 Visual Studio Team Services 构建过程中设置凭据以访问我的私有 MyGet 提要?由于它不起作用,我的所有构建都开始失败。我在网上看过一些东西,但他们指的是使用nuget的旧方法,我使用的是VS15的默认值。

我读过这些:

这是错误:

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

  1. 创建了本地 nuget.config 文件
  2. 使用命令将我的私人供稿保存到该文件[1]
  3. 已添加到源代码管理
  4. 在 VSO 中的构建定义中设置 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