So I've a website that I'm trying to package for Octopus Deploy.
I've the following folder structure:
Web
|
Views
|
WantThis
Dontwantthis
WantThis1
WantThis2
... (lots more)
Scripts
I'm trying to exclude the "Dontwantthisfolder"
So my nuspec looks like this:
...
<file src="..\Web\Views\**\*.*" exclude="**\Dontwantthis\**" target="web\Views" />
...
It's not working though, I still get the "Dontwantthis" folder.
Anyone know how I can achieve this?