如何在 VSTS 构建中设置 myget 凭据?
How to setup myget credentials on VSTS build?
如何在我的 Visual Studio Team Services 构建过程中设置凭据以访问我的私有 MyGet 提要?由于它不起作用,我的所有构建都开始失败。我在网上看过一些东西,但他们指的是使用nuget的旧方法,我使用的是VS15的默认值。
我读过这些:
http://blog.myget.org/post/2012/12/12/NuGet-package-restore-from-a-secured-feed.aspx
http://blog.myget.org/post/2013/10/08/NuGet-Package-Restore-and-MyGet-Build-Services.aspx
这是错误:
好吧,我明白了。
我解决的方法是:
- 创建了本地 nuget.config 文件
- 使用命令将我的私人供稿保存到该文件[1]
- 已添加到源代码管理
- 在 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
如何在我的 Visual Studio Team Services 构建过程中设置凭据以访问我的私有 MyGet 提要?由于它不起作用,我的所有构建都开始失败。我在网上看过一些东西,但他们指的是使用nuget的旧方法,我使用的是VS15的默认值。
我读过这些:
http://blog.myget.org/post/2012/12/12/NuGet-package-restore-from-a-secured-feed.aspx
http://blog.myget.org/post/2013/10/08/NuGet-Package-Restore-and-MyGet-Build-Services.aspx
这是错误:
好吧,我明白了。 我解决的方法是:
- 创建了本地 nuget.config 文件
- 使用命令将我的私人供稿保存到该文件[1]
- 已添加到源代码管理
- 在 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