Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resharper: Inconclusive: Exit code is 14942211 in another test

I am using Visual Studio 2019 and latest Resharper. I have Nunit3 installed along with test adapters. I keep on getting this error. Can someone help me on this

[1]: https://i.sstatic.net/qbcPH.png

like image 980
SandyRocks Avatar asked Jan 25 '26 15:01

SandyRocks


1 Answers

I got the problem. If your test projects are using the SDK project style.

You should add this code into your csprj file.

  <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>     <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>

If your test project app.config file:

  1. The app.config contains only binding redirects, you can delete the entire file
  2. The app.config contains setting, you should delete the binding redirects parts
like image 76
hoangsnowy Avatar answered Jan 29 '26 03:01

hoangsnowy