Hi, thanks for posting!
Generally I would recommend against using the Additional Files To Include setting to reference files that belong to an adjacent project. Referencing files across projects breaks
project atomicity and can create complex arrangements introducing issues that can be hard to track down. As the files are effectively owned by another project, the best practice is to reference this project from your test and use the location of it's built assembly inside the NCrunch test environment in order to find the files you need. There's an
example of this that you might want to have a look at in the documentation.
Something else I often try to warn against is using broad wildcards in the 'Additional Files To Include' setting that may accidentally pick up files that are derived from the build process. You'll notice that when you do this, every time you build your solution, NCrunch will automatically kick off its own build. These wildcards can also result in abnormal runtime assembly referencing behaviour that can create some very obscure issues. A better approach is to try and include the necessary files in your project file, or use a more granular approach with the 'Additional files to include' so that the files derived from the build process (i.e. in bin\debug) are not included.
Checking the syntax shown above, it looks as though there is a bug with the configuration dialog used to set up the 'Additional files to include' setting. When choosing the directory containing the project, it will specify a syntax of '\**.*', which is basically trying to include all the files from your root directory upwards. The correct syntax is actually '**.*'. You can work around this by altering the config file you've shown above and specifying the correct syntax. I'll make a note to include a fix for this in an upcoming release. Thanks for reporting this problem!
Cheers,
Remco