[WIP] infra

This commit is contained in:
2019-01-07 12:42:27 +00:00
parent 8f10747db6
commit 67ff158741
4 changed files with 39 additions and 9 deletions

14
scripts/build.csx Normal file
View File

@ -0,0 +1,14 @@
#! "dnx451"
#r "nuget:Microsoft.Azure.WebJobs,*"
using System;
public static void Run(string myEventHubMessage)
{
// log.Info($"C# Event Hub trigger function processed a message: {myEventHubMessage}");
Console.WriteLine("Test");
}
Run("test");