Harsh Suman
Harsh Suman

Reputation:

Debug an installer project

Could anyone tell me how to debug a custom installer class in an installer project.My custom installer class & the installer are present in same solution.

Regards, Harsh Suman

Upvotes: 5

Views: 4012

Answers (1)

jumpinjackie
jumpinjackie

Reputation: 2517

You can try inserting a Debugger.Break() inside the Installer class method you want to debug which will trigger a debugging session.

Or you could try attaching a debugger to msiexec.exe

Upvotes: 4

Related Questions