I've been trying to get CSS isolation to work for ages now, and no information online seems to be working. It seems fairly straight forward with Microsoft's guide and does indeed work as intended when creating a new project, but not on this project here, which I've been working on for a while: https://github.com/KNPhilip/BlazorEcommerce/tree/fix/cssHell
I've been trying to create several other Blazor projects with the exact same structure and everything seems to work just fine, except in my ongoing project!
I found out it's not necessarily the Assembly name, as stated by a lot of different guides, but rather the project id. I have been following this guide to get to the bottom of it: Blazor CSS Isolation and the PackageIdbut even this handling of the id doesn't work either!
After implementing the above post, I've tried to look in the "Developer Tools" and no scope identifier are applied on the elements, so the CSS isolation is apparently not registered. On my branch "fix/cssHell" I have implemented above linked solution, and I am just testing it on the /error page. Needless to say, before trying the above solution, I have of course done same type of testing with different names in the App.razor without any luck.
I feel like I have no options left. Any CSS isolation wizards who're able to help a fellow programmer out?