...
A: You can go to dotCover|Options|Visual Studio Integration
, select desired shortcut scheme and click "Apply Scheme"
button.
Q: How to fix the exception: "System.MissingMethodException: Method not found: 'Void System.Runtime.Versioning.TargetFrameworkAttribute.JetBrains_Profiler_Core_Instrumentation_Begin(UIntPtr ByRef)'"?
A: Just remove profiling images from NGEN by one of following commands:
- for Windows 32-bit:
%WinDir%\Microsoft.NET\Framework\<version>\ngen.exe uninstall * /profile
- for Windows 64-bit:
%WinDir%\Microsoft.NET\Framework\<version>\ngen.exe uninstall * /profile
%WinDir%\Microsoft.NET\Framework64\<version>\ngen.exe uninstall * /profile
Where <version>
is the version of one of installed frameworks and can be following:
v2.0.40607
v2.0.50215
v2.0.50727
v4.0.20506
v4.0.21006
v4.0.30128
v4.0.30319
Please visit DCVR-3090 issue if you want to know more about it.