Hello
After updating the version to 2.25.4, I started to receive the following error in the Blazor Server Side app.
System.IO.DirectoryNotFoundException: 'C:\Users\user\.nuget\packages\syncfusion.blazor.themes\25.2.4\staticwebassets\'
I have definitions as follows in the _Host.cshtml file.
@{
Layout = null;
QueryHelpers.ParseQuery(Request.QueryString.Value).TryGetValue("theme", out var themeName);
themeName = themeName.Count > 0 ? themeName.First() : "bootstrap5";
}
<link rel='nofollow' href=@("_content/Syncfusion.Blazor.Themes/" + themeName + ".css") rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
Thank you for your help.