Open Bronzato1 opened 4 years ago
I tried to integrate this project into my Blazor WebAssembly (client version).
using LiquidTechnologies.Blazor.ModalDialog;
But it doesn't work. Should have been:
using Blazor.ModalDialog;
When I check the project properties I can see the Default namespace.
@using LiquidTechnologies.Blazor.ModalDialog
@using LiquidTechnologies.Blazor.ModalDialog.Services
Should have been:
@using Blazor.ModalDialog
Otherwise I got erros:
Thanks for your feedback.
Anyway great work !
I tried to integrate this project into my Blazor WebAssembly (client version).
1 In the readme, chapter 1. Register Services: it is told to add the following using statement:
using LiquidTechnologies.Blazor.ModalDialog;
But it doesn't work. Should have been:
using Blazor.ModalDialog;
When I check the project properties I can see the Default namespace.
2 In the readme, chapter 2. Add Imports:
@using LiquidTechnologies.Blazor.ModalDialog
@using LiquidTechnologies.Blazor.ModalDialog.Services
Should have been:
@using Blazor.ModalDialog
Otherwise I got erros:
Thanks for your feedback.
Anyway great work !