Easy Replication
Breaking changes were introduced https://github.com/Azure/app-service-announcements/issues/129
So I install
Microsoft.Azure.WebJobs.Extensions.Storage
This resolves QueueTriggerAttribute
But in program.cs
static void Main()
{
var config = new JobHostConfiguration();
if (config.IsDevelopment)
config.UseDevelopmentSettings();
var host = new JobHost(config);
host.RunAndBlock();
}
I am encountering the following problems:
Questions:
Thanks in advance!
The 3.0.0 NuGet package update (non-beta) brought breaking changes. It's based on the generic host which is similar to the asp.net host. Here's an example of the new setup
Here you can find a GitHub discussion related to that topic.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With