Newer
Older
eShopOnWeb-MessageDriven / src / Web / Areas / Identity / IdentityHostingStartup.cs
@Derek Comartin Derek Comartin on 29 Jun 2021 412 bytes Add NServiceBus
using Microsoft.AspNetCore.Hosting;

[assembly: HostingStartup(typeof(Microsoft.eShopWeb.Web.Areas.Identity.IdentityHostingStartup))]
namespace Microsoft.eShopWeb.Web.Areas.Identity
{
    public class IdentityHostingStartup : IHostingStartup
    {
        public void Configure(IWebHostBuilder builder)
        {
            builder.ConfigureServices((context, services) => {
            });
        }
    }
}