petrce
petrce
workaround in poweshell: ``` $allOutput = & ng test --source-map --code-coverage 2>&1 echo $allOutput if ($allOutput -cmatch 'ERROR') { echo $matches Write-Error "(FAILED)" } ```
eg like: https://github.com/Azure/azure-functions-eventgrid-extension/blob/dev/src/EventGridExtension/EventGridWebJobsStartup.cs
Hi @fbeltrao, can it automatically load from settings? Or do we need to write [EventGridOutput(SasKey = "%eventgrid_sas%", TopicEndpoint = "%eventgrid_endpoint%"... )] to every function? Thanks (Btw awesome extension ;)
I believe to allow autoload from settings you need to use: ``` [AppSetting(Default = "SasKey")] public string SasKey { get; set; } ``` instead of: ``` [AutoResolve(Default = "SasKey")] public...
Thanks, @TPullen21 @MarkPieszak do you think you can review the PR please please? :) it is a last package stopping us from upgrading to A14
I have the same problem