gpt4 book ai didi

azure - 访问 Azure Functions 中的私有(private) Nuget 服务器中托管的 Nuget 包

转载 作者:行者123 更新时间:2023-12-04 00:34:48 27 4
gpt4 key购买 nike

如何访问 Azure Functions 中的私有(private) nuget 服务器中托管的 nuget 包?有什么方法可以指定我的私有(private) nuget 服务器信息吗?

谢谢!

最佳答案

克里斯,

这可以像平常一样使用 nuget.config 文件:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="MyPrivateFeed" value="http://myhost/myfeed" />
... other feeds ...
</packageSources>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
</configuration>

使用 Kudu 或概述的其他部署方法 here ,将该文件复制到函数文件夹或 wwwroot (这将适用于所有函数),您的配置将被使用。

关于azure - 访问 Azure Functions 中的私有(private) Nuget 服务器中托管的 Nuget 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36707613/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com