Question:You create the following class:
Public Class CustomInstaller
Inherits Installer
Public Sub New()
MyBase.New()
End Sub
Public Overloads Overrides Sub Commit(ByVal mySavedState As IDictionary)
MyBase.Commit(mySavedState)
End Sub
Public Overloads Overrides Sub Install(ByVal stateSaver As IDictionary)
MyBase.Install(stateSaver)
End Sub
Public Overloads Overrides Sub Uninstall(ByVal savedState As IDictionary)
MyBase.Uninstall(savedState)
End Sub
Public Overloads Overrides Sub Rollback(ByVal savedState As IDictionary)
MyBase.Rollback(savedState)
End Sub
End Class
What do you need to add to allow the installer to function when the assembly is called with the InstallUtil.exe tool?