Skip to content

Commit

Permalink
Pass the Package Version to XmlMerge when updating AssemblyInstaller …
Browse files Browse the repository at this point in the history
…bindings.
  • Loading branch information
dimarobert authored and bdukes committed Oct 13, 2021
1 parent 045097a commit 79e18b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ private bool ApplyXmlMerge(InstallFile file, string xmlMergeFile)

var xmlMergePath = Path.Combine(Globals.InstallMapPath, "Config", xmlMergeFile);
var xmlMergeDoc = GetXmlMergeDoc(xmlMergePath, name, publicKeyToken, OldVersion, newVersion);
var xmlMerge = new XmlMerge(xmlMergeDoc, file.Version.ToString(), this.Package.Name);
var xmlMerge = new XmlMerge(xmlMergeDoc, this.Package.Version.ToString(), this.Package.Name);
xmlMerge.UpdateConfigs();

return true;
Expand Down

0 comments on commit 79e18b5

Please # to comment.