在Bit Framework的构建阶段,软件包无法还原

时间:2018-02-13 13:15:19

标签: bit-framework

我正在基于Bit Framework创建项目的第一个构建定义。 我在构建定义的Nuget Restore任务上收到此错误。

The nuget command failed with exit code(1) and error(NU1101:
Unable to find package BCrypt.Net-Next. 
No packages exist with this id in source(s): Bit

Packages failed to restore

如何在项目中恢复BCrypt.Net-Next包?

1 个答案:

答案 0 :(得分:2)

Feed和身份验证部分中使用我的NuGet.config中的Feed 选项。然后使用文件资源管理器选项选择nuget.config文件。

Nuget.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="Bit" value="https://www.myget.org/F/bit-foundation/api/v3/index.json" />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
  </packageSources>
</configuration>