Is it possible to retain the logical layout of the project file?
If I have 2 embedded resources laid out like the following
When I call Assembly.GetManifestResourceNames(), the two of them get named:
- MyLibrary._MyItems.SubItems.SubItem1.xml
- MyLibrary._MyItems.SubItems.SubItem2.xml
However, this gives me no real insight into how they're logically ordered in my project. For all I know, they could both be in the same directory.
I worry that this may not be possible, because if I name the files like so, my app will not even compile:
I want to be able to distinguish between
- MyLibrary._MyItems\SubItems\SubItem1.xml and
- MyLibrary._MyItems\SubItems.SubItem2.xml