Closed bassie1978 closed 3 months ago
for that you need: https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.EventGrid/1.0.0-beta4
[EXPLAINATION]: Microsoft.NET.Sdk.Functions 1.0.13 actually targets multiple platforms:
EventGrid uses another approach, different package version to target different frameworks: 1.0.0 targets full framework
2.0.0 targets net standard:
If you are using visual studio, try the eventgrid template which has the dependency set up:
I'm trying to set up an Azure Function that has an EventGrid trigger in .NET 4.6
The Microsoft.NET.Sdk.Functions 1.0.13 has dependencies to Microsoft.Azure.WebJobs >= 2.2.0 && <2.3.0 The 2.0.0-beta1 extension requires Microsoft.Azure.WebJobs >= 3.0.0-beta5
Am I missing something, or can I not upgrade to the 2.0.0-beta1 version?