zoukankan      html  css  js  c++  java
  • How to add the custom nuget feed to TeamCity build?

    The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:Users$USERAppDataRoamingNuGetNuGet.config. The entry for the TeamCity package source needs to be added to the config file of the build agent user that's running your builds.

    https://stackoverflow.com/questions/14548324/how-to-add-the-custom-nuget-feed-to-teamcity-build

    1. On your local machine, open the Nuget.config file for your user
    2. Copy the entry for the TeamCity package source to the clipboard
    3. On the build agent, open the NuGet.config file for the user that's executing your TeamCity builds
    4. Paste in the TeamCity package source entry. Save & quit.
    5. Run the build again. It should now be able to find the package.

    EDIT: ladenedge documents a good solution that didn't exist when I originally answered this question. The solution is especially useful if you don't have admin access to the build agent or want to configure package sources on a per-project basis.

  • 相关阅读:
    用python执行Linux命令
    ls用法
    frigate_TUNNEL
    Python读写Excel文件的实例
    python操作Excel读写--使用xlrd
    iptables详解
    IPy过滤
    python 类中__call__内置函数的使用
    python 类中__init__函数的使用
    超继承
  • 原文地址:https://www.cnblogs.com/chinasoft/p/14926892.html
Copyright © 2011-2022 走看看