I have an existing Visual Studio solution with a handful of unit tests that throw one of two exceptions when executed using the Visual Studio test runner:
- System.IO.FileNotFoundException
- System.TypeInitializationException (where the inner exception is System.IO.FileNotFoundException)
In both cases, the error message includes content like the following:
looked for it at C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE[assemblyname].config
The config files aren't in there of course. They're located in the ...\bin\Debug\TestResults[user][workspace][timestamp]\Out folder. Is it possible to configure where the Visual Studio test runner looks for configuration files of supporting assemblies? If so, what do I need to change?
