For Blazor 8 with both Server Side code, and Client side code, the correct configuration is this: content: ["../**/*.{html,cshtml,razor,js}"], This just adds an extra period to the first parameter so it goes up one level to start the search. This allows it to get the files in YourApp.client (the wasm project), as well as YourApp (the server project) Othewise, the client project will not be scanned.
For Blazor 8 with both Server Side code, and Client side code, the correct configuration is this: content: ["../**/*.{html,cshtml,razor,js}"], This just adds an extra period to the first parameter so it goes up one level to start the search. This allows it to get the files in YourApp.client (the wasm project), as well as YourApp (the server project) Othewise, the client project will not be scanned.
Thank you Greg!!!
Thank you very much for your effort. Was very interesting and very detailed. I had already seen this extension, but didn't know how to work with it.
Thank yo so much
Thank you very much !