1

Closed

Hard Coded Solution Title in SharePointSolutionInstaller_V1_2_2.zip

description

It looks like there is a hard coded solution title in the binary available for download. During an upgrade we noticed that the solution title wasn't what we had set within our config. I checked through the source code
and everything looks fine.
 
So I loaded Setup.exe using reflector I can see the following:
 

Program::CreateProcessControl() : InstallProcessControl

 
internal static InstallProcessControl CreateProcessControl()
{
InstallProcessControl control = new InstallProcessControl();
control.Title = "Installing";
control.SubTitle = "Please wait while Ontolica is installed";
return control;
}
Closed Feb 21 at 4:22 PM by PerrySharePoint
Fixed in release 1.2.4

comments

PerrySharePoint wrote Nov 15, 2010 at 3:46 PM

That svn code looks ok:

http://sharepointinstaller.codeplex.com/SourceControl/changeset/view/54484#130536:

internal static InstallProcessControl CreateProcessControl()
{
  InstallProcessControl control = new InstallProcessControl();
  control.Title = Resources.CommonUIStrings.controlTitleInstalling;
  control.SubTitle = Resources.CommonUIStrings.controlSubTitleInstalling;
  return control;
}
It also looks ok in changeset 30891. But changeset 18672 shows the code you display. So apparently you want code more recent than changeset 18672.

idiom wrote Nov 15, 2010 at 4:43 PM

Yeah, I've built using the source and it is fine.

It seems to just be the package that contains the binary :: http://sharepointinstaller.codeplex.com/releases/view/29075#DownloadId=72490 that has the reference.

PerrySharePoint wrote Feb 21 at 4:21 PM

Fixed in release 1.2.4..