Reputation: 694
I'm a windows kernel-mode (Driver) developer and for this purpose(Develop drivers and debug that ) i enabled kernel debugger on my system.
But when i want to debug a managed-code (A C# project) in my system, using Visual Studio debugger
i receive the following error message:
Debugging isn't possible because a kernel debugger is enabled on the system
In this case what should i do ?? (I don't want to disable kernel debugging or use any other debugger instead of VS debugger). Any idea ?
Upvotes: 0
Views: 617
Reputation: 69270
According to Microsoft this is a known issue. If you upgrade your project to target .NET 4.0 or 4.5. it should work without disabling the kernel debugger.
Upvotes: 3