I am trying to copy a bunch of files from a specific folder to the root of the nuget package. Here's what it looks like in my nuspec file:
<files> <file src="dist/product1/**/*.*" /> </files>
I want the files under dist / product1 to be copied to root from the nuget package, but instead all the files go to the dist / product1 folder in the nuget file, that is, it preserves the folder structure. I have tried many options. Any ideas?
Ali B source share