示例#1
0
 public static void Merge(this Microsoft.Deployment.WindowsInstaller.CustomActionData source, Microsoft.Deployment.WindowsInstaller.CustomActionData other)
 {
     foreach (var key in other.Keys)
     {
         source[key] = other[key];
     }
 }
示例#2
0
 public Configuration(Microsoft.Deployment.WindowsInstaller.CustomActionData cad)
     : this(cad["CUSTOMACTIONTARGET"], cad["BINTARGET"], cad["CONFIGDIR"], cad["Target"])
 {
     ShortVersion = cad["ProductVersion"];
 }
示例#3
0
 public Configuration(Microsoft.Deployment.WindowsInstaller.CustomActionData cad)
     : this(cad["WEBTARGET"], cad["WEBBINTARGET"], cad["CUSTOMACTIONTARGET"], cad["Target"], cad["CONFIGDIR"])
 {
 }