azure-functions-templates
azure-functions-templates copied to clipboard
Azure functions templates for the azure portal, CLI, and VS
Originally filed here: https://github.com/Azure/azure-functions-templates/issues/803, not sure why it was closed. The template for EventGrid still has `1.x` instead of `2.x` in the id, which means VS Code will not list...
We need to add forward link property to the Validators object in bindings.json. This is so that the portal add a link to the error message in case validation fails.
When you create a default EventHubTrigger function in the Azure portal, it's unable to properly handle events. It throws the following error: ``` 2019-07-16T01:00:50.761 [Error] Executed 'Functions.EventHubTrigger1' (Failed, Id=6c60990e-cdf6-4eaa-896c-8caef21cc63a) Binding...
As discussed with @paulbatum . We have guidance around Async as discussed here. https://docs.microsoft.com/en-us/azure/azure-functions/functions-best-practices#use-async-code-but-avoid-blocking-calls By adding this analyzer to the template we have guidance on when the customer is not...
Remove HTML tags from the resources of the following properties. - TimerTrigger trigger (v1, dev and v3.x branch) - MobileTable in (V1 only) - MobileTable out (V1 only) - NotificationHub...
The [project template](https://github.com/Azure/azure-functions-templates/blob/v3.x/Functions.Templates/ProjectTemplate/CSharp/build.config/template.json#L11) already uses "3.x" and the [nuget package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.ItemTemplates/3.0.10405) itself has "3." in it's version. Unless there's a compelling reason, it would be less confusing and very helpful if...
_From @rabrahamOpti on May 30, 2018 13:42_ Current: When creating a Service Bus Queue Triggered Azure Function in Visual Studio 2017, the setup wizard prompts for a "Connection String Setting"...
_From @mcollier on September 28, 2017 18:54_ If the project folder contains ‘%20’ in the path, NuGet packages dependencies for Microsoft.NET.Sdk.Functions (1.0.2) fail to load. Additionally, base Function files such...
_From @paulbatum on June 16, 2017 0:2_ To repro: 1. Using functions tools for VS 2017, make a new function project with dashes in title e.g. "functions-example" 2. Add a...