From 3d5833c91308d08f78f180907c89505acdcc08c5 Mon Sep 17 00:00:00 2001 From: Denis Voituron Date: Mon, 5 Aug 2024 09:47:12 +0200 Subject: [PATCH] Fix Template.Client #2476 (#2485) --- .../content/BlazorWeb-CSharp/BlazorWeb-CSharp.Client/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Templates/content/BlazorWeb-CSharp/BlazorWeb-CSharp.Client/Program.cs b/src/Templates/content/BlazorWeb-CSharp/BlazorWeb-CSharp.Client/Program.cs index 600e37d365..1ac27bb2b1 100644 --- a/src/Templates/content/BlazorWeb-CSharp/BlazorWeb-CSharp.Client/Program.cs +++ b/src/Templates/content/BlazorWeb-CSharp/BlazorWeb-CSharp.Client/Program.cs @@ -3,8 +3,10 @@ using Microsoft.AspNetCore.Components.Authorization; #endif using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using Microsoft.FluentUI.AspNetCore.Components; var builder = WebAssemblyHostBuilder.CreateDefault(args); +builder.Services.AddFluentUIComponents(); #if (IndividualLocalAuth) builder.Services.AddAuthorizationCore();