Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active April 30, 2017 09:32
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/a31290005d5ab728af9875585c78127a to your computer and use it in GitHub Desktop.
Save justinyoo/a31290005d5ab728af9875585c78127a to your computer and use it in GitHub Desktop.
Precompiled Azure Functions Revisited
{
"scriptFile": "..\\bin\\PrecompiledSample.Functions.dll",
"entryPoint": "PrecompiledSample.Functions.AddProductHttpTrigger.Run",
"bindings": [
{
"authLevel": "function",
"name": "req",
"type": "httpTrigger",
"direction": "in"
},
{
"name": "$return",
"type": "http",
"direction": "out"
},
{
"type": "queue",
"name": "outputQueues",
"queueName": "product-queue",
"connection": "AzureWebJobsStorage",
"direction": "out"
}
],
"disabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment