Reputation: 11
I am currently debugging a C# Windows form application. I am exiting application through Application.Exit()
But It still shows on the Task Manager and weird thing is that I am not able to terminate it either. The only way is to reboot.
Upvotes: 1
Views: 809
Reputation: 11
Go to project properties, navigate to the Debug section and deselect "Enable the Visual Studio hosting process".
Next time you perform a debug it should clear out the process.
Upvotes: 1