If you create a basic mvc project:
>dotnet new mvc
Out of the box it comes with page (component) scoped CSS files, i.e.:
Index.cshtml
'->Index.cshtml.css
Any css in the scoped file gets an automatic id assigned to it, with a matching id assigned to the html scope (in this case the Index.cshtml page).
However, when creating a new Umbraco project, if you create a scoped css file under an Umbraco view file, .NET will generate the scoped css with the id, but it will not add the id to the rendered view.
Has anyone gotten that second part to work? Is it possible?