Changing ReSharper test runner supported runtime
Im currently using visual studio 2010, and all of my repository unit testes are build over the sqlite database. The current sqlite ado.net provider doesn't support asp.net 4.0, so, to make the testes run in the NUnit GUI I had to alter the nunit.configuration.exe file, adding the tag below to specify the supported and required runtimes
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
<requiredRuntime version="v4.0.21006" />
</startup>
Does ReSharper test runner have some similar config file? How do I specify the runner suported and required runtime?
Please sign in to leave a comment.
I am trying to find this information too. Thanks.