Posts Tagged ‘Debug’
How to Debug Installer Class
Posted by: admin in Deployment on March 31st, 2009
To Debug Install Class;
Public Overrides Sub Install(ByVal stateSaver As System.Collections.IDictionary)
#If DEBUG Then
System.Diagnostics.Debugger.Break()
#End If
MyBase.Install(stateSaver)
End Sub