T
Tony Johansson
Hi!
A question just for understanding custom installer.
I now that VS has setup project that can help with the installation.
What does this sentence mean:
"There are many way to invoke your installers for example, by using the
InstallUtil.exe utility.
The Installer class has an Installers property, which returns an instance of
the InstallerCollection
This property is useful because it allows you to add multiple installers to
a single assembly so that different isolated tasks can be run."
My answer is that you can for example have several CustomInstallers in the
same assembly if I understood the text correct like below. Is that correct ?
But if you now can have several custom installers in the same assembly which
install method is called becuase you might have one install method in each
custom installer ?
public class CustomInstaller_1 : Installer
{
....
}
public class CustomInstaller_2 : Installer
{
....
}
//Tony
A question just for understanding custom installer.
I now that VS has setup project that can help with the installation.
What does this sentence mean:
"There are many way to invoke your installers for example, by using the
InstallUtil.exe utility.
The Installer class has an Installers property, which returns an instance of
the InstallerCollection
This property is useful because it allows you to add multiple installers to
a single assembly so that different isolated tasks can be run."
My answer is that you can for example have several CustomInstallers in the
same assembly if I understood the text correct like below. Is that correct ?
But if you now can have several custom installers in the same assembly which
install method is called becuase you might have one install method in each
custom installer ?
public class CustomInstaller_1 : Installer
{
....
}
public class CustomInstaller_2 : Installer
{
....
}
//Tony