Hello
I'm again trying to learn Blazor with MudBlazor. The issue now is I can't set up MudBlazor in .Net 8 Blazor Web App.
I followed this guide but it doesn't work.
I searched more but didn't find anything.
This line
in the Server project doesn't work (Maybe because in Server project MudBlazor package is not installed?)
The error message (in run time) is this:
InvalidOperationException: Cannot provide a value for property 'DialogService' on type 'MudBlazor.MudDialogProvider'. There is no registered service of type 'MudBlazor.IDialogService'.
Would you give me any pointing on how to solve this issue?
Thank you in advance.
Pablo
I'm again trying to learn Blazor with MudBlazor. The issue now is I can't set up MudBlazor in .Net 8 Blazor Web App.
I followed this guide but it doesn't work.
Install MudBlazor in Dotnet 8 Blazor Project
I am starting a side project with blazor and planning to us MudBlazor as UI lib in dotnet 8. My biggest roadblock currently is, When we create new dotnet 8 Blazor project, it creates 2 projects in
stackoverflow.com
This line
C#:
builder.Services.AddMudServices();
The error message (in run time) is this:
InvalidOperationException: Cannot provide a value for property 'DialogService' on type 'MudBlazor.MudDialogProvider'. There is no registered service of type 'MudBlazor.IDialogService'.
Would you give me any pointing on how to solve this issue?
Thank you in advance.
Pablo