BaseInputDirectory

The BaseInputDirectory element tells Concordion.NET where to search for executable specifications. If this element is not specified then Concordion.NET searches within the DLL file containing the fixture classes for related specification documents.

To use the project directory of your Visual Studio project as your directory to search for specifications, you can use the following configuration:

<?xml version="1.0" encoding="utf-8" ?>
<Specification>
  <BaseInputDirectory path="../.." />
</Specification>

To use embedded specifications from your DLL file, you have to remove the configuration entry for BaseInputDirectory or set it to an empty string:

<?xml version="1.0" encoding="utf-8" ?>
<Specification>
  <!-- <BaseInputDirectory path="" /> -->
</Specification>