From 945ca35acc0ea3b2070621d11eb797dced823dc4 Mon Sep 17 00:00:00 2001 From: Konstantin Dinev Date: Tue, 15 Sep 2026 11:37:17 +0300 Subject: [PATCH] fix(use-igniteui-blazor): setting min dotnet version and reworking rendermode snippet --- plugins/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md b/plugins/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md index 8c621de2..182d4513 100644 --- a/plugins/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md +++ b/plugins/dotnet-blazor/skills/use-igniteui-blazor/SKILL.md @@ -21,7 +21,7 @@ description: > ## 1. NuGet package -Before adding packages, inspect the target projects' existing package references. If `IgniteUI.Blazor` or `IgniteUI.Blazor.Trial` is already referenced, keep that package strategy and do not add Lite or GridLite. Only switch package families when the user explicitly asks, replacing conflicting references rather than keeping both. +Before adding packages, inspect the target projects' target framework and existing package references. The lowest supported target framework version is .NET 8.0. If `IgniteUI.Blazor` or `IgniteUI.Blazor.Trial` is already referenced, keep that package strategy and do not add Lite or GridLite. Only switch package families when the user explicitly asks, replacing conflicting references rather than keeping both. ```bash dotnet add package IgniteUI.Blazor.Lite # OSS core UI components (MIT) @@ -114,7 +114,9 @@ Theme files under `_content/IgniteUI.Blazor/themes/` are `{light|dark}/{bootstra Ignite UI components need an interactive render mode; static SSR renders nothing usable. ```razor -@rendermode InteractiveServer @* or InteractiveWebAssembly / InteractiveAuto *@ +@rendermode InteractiveServer ``` -Or globally in `App.razor`: ``. +Or globally in `App.razor`: ``. + +Use `InteractiveWebAssembly` or `InteractiveAuto` in place of `InteractiveServer` as needed.