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?
 

A Add a Setup project to the solution.
 

B Add the Installing method. 

C Add a constructor that accepts an IDictionary object. 

D Add the RunInstaller attribute to the class. 

+ Answer
+ Report
Total Preview: 1115

Copyright © 2024. Powered by Intellect Software Ltd