robot
2024.10
true
UiPath logo, featuring letters U and I in white
Robot admin guide
Last updated 2024年11月18日

配置活动订阅源

服务模式和用户模式机器人使用不同的NuGet.config文件。
以用户模式安装的机器人有两个NuGet.config文件:一个位于安装文件夹中,另一个位于用户配置文件文件夹 ( %AppData%\NuGet\NuGet.config ) 中。
以服务模式安装的机器人使用安装文件夹中的NuGet.config文件。
要添加或删除活动订阅源,请更新任何NuGet.config文件,如下所示:
  1. Open the NuGet.config file with a text editor, such as Notepad++.
  2. 要添加新的活动订阅源,请在<packageSources>部分中添加新的<add/>元素,并提供名称key和订阅源地址value
    <packageSources>
        <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
        <add key="Online Feed" value="https://mycustomfeed.com" />
        <add key="Local Feed" value="C:\local feed" />
    </packageSources><packageSources>
        <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
        <add key="Online Feed" value="https://mycustomfeed.com" />
        <add key="Local Feed" value="C:\local feed" />
    </packageSources>
    备注:

    您可以同时添加本地和在线订阅源。

  3. 要删除活动订阅源,请删除相应的<add/>标签。
  4. 保存NuGet.config文件,然后重新启动机器人服务。

此页面有帮助吗?

获取您需要的帮助
了解 RPA - 自动化课程
UiPath Community 论坛
Uipath Logo White
信任与安全
© 2005-2024 UiPath。保留所有权利。