尝试从 VSTS 推送 nuget 包时出错
error while trying to push nuget package from VSTS
我添加了 dotnet 任务 (.Net Core) 来执行 nuget 推送。在 Nuget 服务器部分,它要求我使用创建一个新的 Nuget 连接。我在连接名称、Feed URL 和 API 键中使用 API 键选项和游戏。
当我 运行 这一步时,我得到以下错误
Error: DotNetCore currently does not support using an encrypted Api
Key.
这是限制还是我做错了什么?
请从我的桌面上注意我即将创建包并使用 apikey 推送包。
通过调用 dotnet nuget push
命令通过命令行任务将包推送到 NuGet 服务器来处理此问题。
我遇到了这个问题并找到了替代方法。
而不是使用 dotnet nuget push
使用 nuget push
.
我添加了 dotnet 任务 (.Net Core) 来执行 nuget 推送。在 Nuget 服务器部分,它要求我使用创建一个新的 Nuget 连接。我在连接名称、Feed URL 和 API 键中使用 API 键选项和游戏。
当我 运行 这一步时,我得到以下错误
Error: DotNetCore currently does not support using an encrypted Api Key.
这是限制还是我做错了什么?
请从我的桌面上注意我即将创建包并使用 apikey 推送包。
通过调用 dotnet nuget push
命令通过命令行任务将包推送到 NuGet 服务器来处理此问题。
我遇到了这个问题并找到了替代方法。
而不是使用 dotnet nuget push
使用 nuget push
.