Resharper Unit Test Configuration
by benl
Just a quick one: when attempting to run tests from a class library with Resharper, ensure the config file is named [ProjectName].dll.config and the build action is set to always copy.
That is all.
Just a quick one: when attempting to run tests from a class library with Resharper, ensure the config file is named [ProjectName].dll.config and the build action is set to always copy.
That is all.
You can also add an app.config, and VS will copy it to the relevant output directory as [ProjectName].dll.config
Ah of course. However I tend to do my builds (yes, even during development
) in Nant rather than VS. Good tip though!