↧
Answer by evilSnobu for Can't use Nuget package in C# Azure function
If you are indeed on the v1 runtime then you're simply missing a using statement that has the EmailAddress type.Add this in —using SendGrid.Helpers.Mail;If you're on v2 (beta/.NET Core), just follow...
View ArticleCan't use Nuget package in C# Azure function
I'm trying to write an azure function which will use Sendgrid to send emails. However, I can't get my function to recognize the external nuget package. Here's what I have:project.json{"frameworks":...
View Article