LiquidTechnologies / blazor-modal-dialog

Allows Blazor components to be used as popup modal dialogs, arguments can be passed to dialogs and results returned. Logical flow is maintained using async functions. Also provides simple set of MessageBox to get basic user feedback.
MIT License
45 stars 6 forks source link

using statement wrong in the readme file #4

Open Bronzato1 opened 4 years ago

Bronzato1 commented 4 years ago

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;

image

When I check the project properties I can see the Default namespace.

image

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:

image

Thanks for your feedback.

Anyway great work !