From 6eab6255f832007886c4b01861dc39d5582177ef Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 26 Oct 2019 13:40:49 -0700 Subject: Update to WindowsInstallerData rename from Data --- src/WixToolset.Core.WindowsInstaller/Patch.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/WixToolset.Core.WindowsInstaller/Patch.cs') diff --git a/src/WixToolset.Core.WindowsInstaller/Patch.cs b/src/WixToolset.Core.WindowsInstaller/Patch.cs index c1914aca..6549e830 100644 --- a/src/WixToolset.Core.WindowsInstaller/Patch.cs +++ b/src/WixToolset.Core.WindowsInstaller/Patch.cs @@ -15,10 +15,10 @@ namespace WixToolset.Data public class Patch { private List inspectorExtensions; - private Output patch; + private WindowsInstallerData patch; private TableDefinitionCollection tableDefinitions; - public Output PatchOutput + public WindowsInstallerData PatchOutput { get { return this.patch; } } @@ -40,7 +40,7 @@ namespace WixToolset.Data public void Load(string patchPath) { - this.patch = Output.Load(patchPath, false); + this.patch = WindowsInstallerData.Load(patchPath, false); } /// -- cgit v1.2.3-55-g6feb