I have a folder with Resources and want to get a list with all paths.
If I set them to an embedded resource, I can get them via
var resources = Assembly.GetExecutingAssembly().GetManifestResourceNames();
When follwing this answer https://stackoverflow.com/a/1935035/6229375, I shouldn't use embedded resource anymore or I'm doing something wrong?
