I have created a Nuget Package in which i install other referenced packages. I also have a folder of Images containing up to 100 image files. If I put these in the content folder they get copied over to the root of the project on which I install the nuget package.
Here is my problem. When having the content>Images>listoffiles it takes up to 30 minutes per project to copy the files to the root folder. Further more I need them in the bin/debug and bin/release folders, not the root of the project.
Is there a way to just add the images into the lib folder so that they are in the package>lib>Images folder and then copy them to the bin/debug bin/release folders of the project to which it was installed?