Skip to content

Commit

Permalink
Merge pull request #1285 from icnocop/patch-2
Browse files Browse the repository at this point in the history
Fixed typo in setup.cs
  • Loading branch information
oleg-shilo authored May 1, 2023
2 parents 5622b1a + 52a3b40 commit db13a12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/src/WixSharp.Samples/Wix# Samples/InjectXML/setup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -111,4 +111,4 @@ public void Process(ProcessingContext context)
this.CreateAndInsertParentComponent(context)
.Add(this.ToXElement(WixExtension.Util, "EventSource"));
}
}
}

0 comments on commit db13a12

Please sign in to comment.