Installation of Radzen from Visual Studio via NuGet

Hi
I installed Radzen for Blazor from the NuGet package (version 2.6.4) directly from within Visual Studio 2019. However, I am unable to get any of the popup s to work (like Notification or Dialog box).
I followed the documentation and added the following entries to the _imports and _Host files manually

_Imports.razor

@using Radzen
@using Radzen.Blazor

_Host.chtml

<link rel="stylesheet" href="_content/Radzen.Blazor/css/default-base.css">
<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>

However I have just realised, where exactly is that _content/Radzen.Blazor folder?
Do I need to install something else? Or are there files I manually need to put into my wwwroot/css and wwwroot/js folders and then update those relative paths to point to my wwwroot folders?

Thanks in advance for any help

You need to register two services for notification and dialogs.

The _content directory is created automatically - those are the so called static web assets.

Ah, OK. Thanks s much for your quick reply. I had actually registered the component in the startup class as 'AddTransient' rather than as 'AddScoped' as you suggested. When I changed to 'AddScoped' it works fine. Thanks so much :slightly_smiling_face: