Access Nuget Packages hosted in private Nuget server in Azure Functions -


how can access nuget packages hosted in private nuget server in azure functions?. there way can specify private nuget server info?

thanks!

krishh,

this possible using nuget.config file would:

<?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> 

using kudu, or deployment method outlined here, copy file either function folder or wwwroot (that apply functions) , config used.


Comments

Popular posts from this blog

Ansible - ERROR! the field 'hosts' is required but was not set -

customize file_field button ruby on rails -

SoapUI on windows 10 - high DPI/4K scaling issue -