0

I have a problem with the vshost.exe on running my test cases using a standalone test runner. vshost.exe is still running after I've done the following:

  1. Clear my bin/Debug folder of the project.
  2. Uncheck the "Enable the Visual Studio hosting process".
  3. Restart Visual Studio.
  4. Build the project.
  5. Run test runner.

enter image description here

What else do I miss to kill the vshost.exe. Your response is truly appreciated.

Luka Kerr
  • 4,161
  • 7
  • 39
  • 50
Airmovz
  • 179
  • 1
  • 1
  • 3

1 Answers1

0

From comment56995746, my guesses are you either

  • didn't save the settings, or
  • didn't rebuild, rather than build, the project
    • that's because the compiled bits actually reside in obj folder (and then some are copied into bin) which you didn't clean. Rebuild makes VS disregard them.
Community
  • 1
  • 1
ivan_pozdeev
  • 33,874
  • 19
  • 107
  • 152