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