From 52a3b404e7fccd1e3f157bbfac2930ac6fa31daa Mon Sep 17 00:00:00 2001 From: Rami Date: Sun, 30 Apr 2023 18:52:38 -0700 Subject: [PATCH] Fixed typo in setup.cs --- Source/src/WixSharp.Samples/Wix# Samples/InjectXML/setup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/src/WixSharp.Samples/Wix# Samples/InjectXML/setup.cs b/Source/src/WixSharp.Samples/Wix# Samples/InjectXML/setup.cs index 5de7190c..a586d660 100644 --- a/Source/src/WixSharp.Samples/Wix# Samples/InjectXML/setup.cs +++ b/Source/src/WixSharp.Samples/Wix# Samples/InjectXML/setup.cs @@ -30,7 +30,7 @@ static public void Main() // Note: setting x64 is done via XML injection for demo purposes only. // The x64 install can be achieved by "project.Platform = Platform.x64;" - // AddXmlInclude can also be applied to any WixShari entity (e.g. new File("...").AddXmlInclude("FileCommonProperies.wxi") + // AddXmlInclude can also be applied to any WixSharp entity (e.g. new File("...").AddXmlInclude("FileCommonProperies.wxi") project.Include(WixExtension.Util) .AddXmlInclude("CommonProperies.wxi") @@ -111,4 +111,4 @@ public void Process(ProcessingContext context) this.CreateAndInsertParentComponent(context) .Add(this.ToXElement(WixExtension.Util, "EventSource")); } -} \ No newline at end of file +}