Please consider the following nuspec file:
<?xml version="1.0"?>
<package >
  [SOME METADATA]
  <files>
    <file src="bin\x64\$configuration$\GR*.filetype" target="content\" />
  </files>
</package>
The above has successfully packaged up the filetype files starting with 'GR' and has added them to my new, referencing, solution.
The problem is that I want these files to always be copied to the output directory. Can I do this via nuspec without having to manually amend the properties in my new solution?
 
     
    