One comment

  1. The following error message:
    “Code coverage collection error: VS performance and coverage logger engine is already running on machine.”

    means that you are collecting code coverage and profiling at the same time. Unfortunately, this is not supported, as both technologies share the same data collection architecture. Furthermore, code coverage collection would offset the performance data. If this is the case, I would recommend that you disable code coverage collection (through test run configuration editor) while profiling.

    Boris Vidolov

Comments are closed.