I've been using nCrunch for several years and haven't seen this before but now I'm finding a problem with "Additional files to include".
I've a solution that has a large number of nuget packages, some of these packages have tools, build and runtimes folders that contain files that are needed for the build. We use Paket for package management so nCrunch doesn't automatically pick these up (I assume that's why) so I'm adding the following expressions to the solution additional files to include:
..\packages\**\runtimes\**.*
..\packages\**\tools\**.*
..\packages\**\build\**.*
..\packages\**\driver\**.*
Previously this worked fine, but now it seems to be only copying some of the files. For example I might see "packages\systemtests\Selenium.Chrome.WebDriver\build" but not "packages\systemtests\Selenium.Chrome.WebDriver\driver" within the workspace folder.
Adding the directory explicitly works fine but the glob expressions seem to miss some of the files but not others. I've also tried using **.* instead of ** in the middle of the path, same result.
Hopefully someone can help shed some light on this as adding the individual folders one at a time is quite time consuming, especially when the above expressions used to work fine.