I know you can create a project.json
file to add NuGet packages to your functions, but how can I specify what feed I want them pulled from?
标签:
azure-functions
相关问题
- Debugging two Azure Functions projects locally
- How to Append a Text File in an Azure Blob with a
- Cannot use JpegBitmapEncoder in Azure Function
- How to deploy multiple Microsoft azure functions f
- Azure Function - Portal Code Deployment feature is
相关文章
- Azure Function App - Publish failed
- How to authenticate to an Azure Function using fun
- How do I write an azure function to trigger a azur
- No job functions found in Azure Functions project
- “Wake up” time of Azure Function triggered by Serv
- Azure functions - How to read form data
- Azure Functions - Import Custom Node Module
- Azure Function Docker not working with http trigge
Azure functions supports the standard nuget.config approach to setup custom sources. You can place a nuget.config file with your custom sources either in your function folder or in the Function App root (where it will be used for all functions)
You can find more information about the file format and specifying custom sources here: https://docs.nuget.org/consume/nuget-config-file#package-sources