I'm trying to use NUnit-Gui with OpenCover. To do it I'm starting the OpenCover with NUnit-Gui as main process, with the command as follow:
C:\OpenCover\OpenCover.Console.exe -target:"C:\Nunit\nunit-gui.exe" -register:user -targetargs:"C:\Myproject\bin\Myproject.Test.dll" -output:"C:\OpenCover\reports\OpenCoverreport.xml"
But I've need to close the NUnit-Gui process to get the coverage result. I'd like to get the result without closing the main process.
Is there a way to run NUnit-Gui with code coverage without to close the process NUnit-Gui?