Trying to follow @matthoneycutt 's tutorial on Azure IoT Hub it seems like Microsoft.Azure.WebHosts.JobHostConfiguration vanished between 3.0.0-beta5 and 3.0.0-rc1 releases of Microsoft.Azure.WebHosts.Host in the Microsoft.Azure.WebHosts nuget package?
What would be the approach to get this code up running in Microsoft.Azure.WebHosts 3.0.0-rc1?
var processorHost = new EventProcessorHost(hubName, consumerGroupName, iotHubConnectionString, storageConnectionString,storageContainerName);
processorHost.RegisterEventProcessorAsync<LoggingEventProcessor>().Wait();
var eventHubConfig = new EventHubConfiguration();
eventHubConfig.AddEventProcessorHost(hubName, processorHost);
var configuration = new JobHostConfiguration(storageConnectionString);
configuration.UseEventHub(eventHubConfig);
var host = new JobHost(configuration);
host.RunAndBlock();
Seems related to this post, though in a different context