Update of /cvsroot/nantcontrib/NAntContrib/src/Tasks/Msi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13226/src/Tasks/Msi
Modified Files:
InstallerCreationCommand.cs InstallerTaskBase.cs
Log Message:
Fixed a bug w/ the documentation. Fixed a bug with null registry search value names.
Index: InstallerCreationCommand.cs
===================================================================
RCS file: /cvsroot/nantcontrib/NAntContrib/src/Tasks/Msi/InstallerCreationCommand.cs,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** InstallerCreationCommand.cs 13 Mar 2005 16:28:18 -0000 1.24
--- InstallerCreationCommand.cs 3 Apr 2005 16:55:57 -0000 1.25
***************
*** 999,1003 ****
value.name, msidbLocatorTypeRawValue);
! Log(Level.Verbose, "\t" + GetDisplayablePath(regKey.path.Replace("}", "}}").Replace("{", "{{")) + @"#" + value.name.Replace("}", "}}").Replace("{", "{{"));
}
}
--- 999,1003 ----
value.name, msidbLocatorTypeRawValue);
! Log(Level.Verbose, "\t" + GetDisplayablePath(regKey.path.Replace("}", "}}").Replace("{", "{{")) + @"#" + ((value.name == null) ? "" : value.name.Replace("}", "}}").Replace("{", "{{")));
}
}
Index: InstallerTaskBase.cs
===================================================================
RCS file: /cvsroot/nantcontrib/NAntContrib/src/Tasks/Msi/InstallerTaskBase.cs,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** InstallerTaskBase.cs 10 Mar 2005 06:54:23 -0000 1.11
--- InstallerTaskBase.cs 3 Apr 2005 16:55:57 -0000 1.12
***************
*** 534,541 ****
/// <code>
/// <search>
! /// <registry path="Software\Microsoft\InetStp" root="machine" >
/// <value name="PathWWWRoot" setproperty="IISWWWROOT" />
/// </registry>
! /// <registry path="SYSTEM\CurrentControlSet\Services\W3SVC\Parameters" root="machine" >
/// <value name="MajorVersion" setproperty="IISVERSION" />
/// </registry>
--- 534,541 ----
/// <code>
/// <search>
! /// <registry type="registry" path="Software\Microsoft\InetStp" root="machine" >
/// <value name="PathWWWRoot" setproperty="IISWWWROOT" />
/// </registry>
! /// <registry type="registry" path="SYSTEM\CurrentControlSet\Services\W3SVC\Parameters" root="machine" >
/// <value name="MajorVersion" setproperty="IISVERSION" />
/// </registry>
***************
*** 547,554 ****
/// <code>
/// <search>
! /// <key type="registry" path="Software\Microsoft\MessengerService" root="machine" >
/// <value setproperty="MSGSRVNAME" />
/// <value name="" setproperty="MSGSRVNAME2" />
! /// </key>
/// </search>
/// </code>
--- 547,554 ----
/// <code>
/// <search>
! /// <registry type="registry" path="Software\Microsoft\MessengerService" root="machine" >
/// <value setproperty="MSGSRVNAME" />
/// <value name="" setproperty="MSGSRVNAME2" />
! /// </registry>
/// </search>
/// </code>
|