I created a Blazor RCL class library that contains some base scripts/icons/styles in wwwroot
to be added to the main app's wwwroot
folder when deployed.
As mentioned in the documentation, files are supposed to be copied automatically into wwwroot/_content/My_RCL_Class/
.
When I package my solution (that includes my RCL as well as the main app project) via docker some of the files included in wwwroot
are indeed present, but not all - I checked project config file and all files are marked as content - Do not copy
.
How can I ensure files located in the RCL's wwwroot
folder are indeed copied to the _content
subfolder?