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.

  • 相关阅读:
    19. vue的原理
    18.jwt加密
    17.vue移动端项目二
    16.vue-cli跨域,swiper,移动端项目
    15.vue动画& vuex
    14.vue路由&脚手架
    13.vue组件
    12.vue属性.监听.组件
    11.vue 数据交互
    从尾到头打印链表
  • 原文地址:https://www.cnblogs.com/chinasoft/p/14926892.html
Copyright © 2011-2022 走看看