public SetupFeature()
 {
     enableInDefaultInstall = true;
     enableInMinimalInstall = true;
     _childFeatures = new List<SetupFeature>();
     _components = new List<SetupComponent>();
     _featureId = "ID" + SetupDirectory.GetMd5Hash(Guid.NewGuid().ToString());
     _featureId = _featureId.Replace('-', '_').ToUpper();
     _defaultInstallMode = InstallModeE.NOT_INSTALLED;
     _featureName = "New Feature";
     _featureDescription = "Enter Description Here";
     _directories = new List<SetupDirectory>();
     //_component = new SetupComponent();
     _shortcuts = new List<SetupShortcut>();
 }
Exemple #2
0
 public SetupFeature()
 {
     enableInDefaultInstall = true;
     enableInMinimalInstall = true;
     _childFeatures         = new List <SetupFeature>();
     _components            = new List <SetupComponent>();
     _featureId             = "ID" + SetupDirectory.GetMd5Hash(Guid.NewGuid().ToString());
     _featureId             = _featureId.Replace('-', '_').ToUpper();
     _defaultInstallMode    = InstallModeE.NOT_INSTALLED;
     _featureName           = "New Feature";
     _featureDescription    = "Enter Description Here";
     _directories           = new List <SetupDirectory>();
     //_component = new SetupComponent();
     _shortcuts = new List <SetupShortcut>();
 }