I am dealing with a nuget package that includes css files as content.
My goal is to have these css files copied to a specific directory upon importing the package into a project, without requiring the project's structure to match exactly.
Is there a method to designate a target directory for these added content files? I attempted the following:
<file src="typography\*.css" target="content\css\jobseekerstyle-$version$\typography" />
However, this resulted in the files being included twice - once in the desired location and once where they already existed in the project structure.
Since my package only deals with managing CSS and consists solely of content files, I am open to exploring alternative solutions.