Last active
February 7, 2020 19:25
Sample initialization code for NServiceBus running on Azure WebJobs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ********************************************** | |
// Fore more information, visit: | |
// https://blog.hildenco.com/2020/02/migrating-nservicebus-backends-to-azure.html | |
// ********************************************** | |
// Related docs: | |
// * NSB WebJobs: https://docs.particular.net/samples/azure/webjob-host/ | |
// * Azure WebJobs: https://docs.microsoft.com/en-us/azure/app-service/webjobs-sdk-get-started | |
public class Program | |
{ | |
static void Main() | |
{ | |
try | |
{ | |
var epc = new EndpointConfiguration("MyApp.NServiceBus.Backend"); | |
new EndpointConfig().Customize(epc); | |
var endpoint = Endpoint.Start(epc).GetAwaiter().GetResult(); | |
var builder = new HostBuilder(); | |
var host = builder.Build(); | |
using (host) | |
{ | |
host.Run(); | |
} | |
// shuts down NSB to properly release all acquired resources | |
endpoint.Stop().GetAwaiter().GetResult(); | |
} | |
catch (Exception e) | |
{ | |
Console.Error.WriteLine(e); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment