The title is the question really...
I have an embedded Razor Class Library which contains some CSS files, which are a bunch of Bootstrap Themes.
Since Razor Class Libraries compile their entire content into a single file, there is no File System
as such, so Directory.GetFiles
on the wwwroot/css directory does not work as it would in a normal Website project.
So, does anyone know how to get a list of embedded CSS files in code?
(in case relevant, THIS SO QUESTION is one I asked earlier in the development of this project and shows the code I am using to embed the static files in my RCL)
(Project uses .NET Core 3.0)