Trying to use the example code snippet:
builder.UseNServiceBus(ctx =>
{
var endpointConfig = new EndpointConfiguration("ConsoleEndpoint");
endpointConfig.UseTransport(new LearningTransport());
return endpointConfig;
});
It's not working, also tried similar stuff to no avail.
When I run the azure function locally in the functions "emulator", it would be fine for me to use the local file system for the messages (LearningTransport), however the config.UseTransport doesn't accept an Instance of LearningTransport.
What would be the correct way to use the LearningTransport with the azure functions trigger?