//------------------------------------------------------------------------------ // Generated by the DevExpress.Blazor package. // To prevent this operation, add the DxExtendStartupHost property to the project and set this property to False. // // squirrowse.web.csproj: // // // // netcoreapp3.1 // False // //------------------------------------------------------------------------------ using System; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Hosting; [assembly: HostingStartup(typeof(squirrowse.web.DevExpressHostingStartup))] namespace squirrowse.web { public partial class DevExpressHostingStartup : IHostingStartup { void IHostingStartup.Configure(IWebHostBuilder builder) { builder.ConfigureServices((serviceCollection) => { serviceCollection.AddDevExpressBlazor(); }); } } }