28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// 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:
|
|
//
|
|
// <Project Sdk="Microsoft.NET.Sdk.Web">
|
|
// <PropertyGroup>
|
|
// <TargetFramework>netcoreapp3.1</TargetFramework>
|
|
// <DxExtendStartupHost>False</DxExtendStartupHost>
|
|
// </PropertyGroup>
|
|
//------------------------------------------------------------------------------
|
|
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();
|
|
});
|
|
}
|
|
}
|
|
}
|