Created
December 15, 2017 13:43
-
-
Save PoisonousJohn/221e5bc468835f7e308265806fc51edb to your computer and use it in GitHub Desktop.
Template for publishing precompiled azure function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"generatedBy": "Microsoft.NET.Sdk.Functions-1.0.0.0", | |
"configurationSource": "attributes", | |
"bindings": [ | |
{ | |
"type": "eventHubTrigger", | |
"path": "default", | |
"connection": "EventHub", | |
"name": "myEventHubMessage" | |
} | |
], | |
"disabled": false, | |
"scriptFile": "..\\bin\\ADLSOutputter.dll", | |
"entryPoint": "ADLSOutputter.RegisterEvent.Run" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment