Fix installer issues

- Sign the Sharedfx bundle correctly.
- Fix the installer title for SharedFx bundle. Fixes #2100
- Fix the installer title for SharedFx pkg. Fixes #2161
This commit is contained in:
Sridhar Periyasamy 2016-03-31 10:02:12 -07:00
parent 1428eb81cf
commit 988fe85c19
4 changed files with 37 additions and 11 deletions

View file

@ -68,7 +68,8 @@ namespace Microsoft.DotNet.Cli.Build
string formattedDistContents =
distTemplate.Replace("{SharedFxComponentId}", SharedFxComponentId)
.Replace("{SharedHostComponentId}", SharedHostComponentId)
.Replace("{CLISdkComponentId}", CLISdkComponentId);
.Replace("{CLISdkComponentId}", CLISdkComponentId)
.Replace("{CLISdkNugetVersion}", CLISdkNugetVersion);
File.WriteAllText(distributionPath, formattedDistContents);
Cmd("productbuild",
@ -122,7 +123,9 @@ namespace Microsoft.DotNet.Cli.Build
string distributionPath = Path.Combine(PkgsIntermediateDir, "shared-framework-formatted-distribution.xml");
string formattedDistContents =
distTemplate.Replace("{SharedFxComponentId}", SharedFxComponentId)
.Replace("{SharedHostComponentId}", SharedHostComponentId);
.Replace("{SharedHostComponentId}", SharedHostComponentId)
.Replace("{SharedFrameworkNugetName}", Monikers.SharedFrameworkName)
.Replace("{SharedFrameworkNugetVersion}", SharedFrameworkNugetVersion);
File.WriteAllText(distributionPath, formattedDistContents);
Cmd("productbuild",