Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active April 30, 2017 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/8010ad32997492217bb4521c25d84de8 to your computer and use it in GitHub Desktop.
Save justinyoo/8010ad32997492217bb4521c25d84de8 to your computer and use it in GitHub Desktop.
Precompiled Azure Functions Revisited
{
"scriptFile": "..\\bin\\PrecompiledSample.Functions.dll",
"entryPoint": "PrecompiledSample.Functions.AddProductQueueTrigger.Run",
"bindings": [
{
"name": "myQueueItem",
"type": "queueTrigger",
"direction": "in",
"queueName": "product-queue",
"connection": "AzureWebJobsStorage"
}
],
"disabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment