Skip to content
This repository has been archived by the owner on Feb 12, 2018. It is now read-only.

Commit

Permalink
Fixed WiX warning with directory missing creation tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paris committed Jul 18, 2010
1 parent 8178c39 commit 20d1b64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Deploy/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ static void BuildMsi(TextWriter writer, bool x64)
writer.WriteLine("</Directory>");

writer.WriteLine("<Directory Id='ProgramMenuFolder' Name='ProgramMenuFolder'>");
writer.WriteLine("<Component Id='{0}' Guid='{1}' />", IdL, Guid);
writer.WriteLine("<Component Id='{0}' Guid='{1}'>", IdL, Guid);
writer.WriteLine("<CreateFolder />");
writer.WriteLine("</Component>");
writer.WriteLine("</Directory>");
writer.WriteLine("</Directory>");

Expand Down

0 comments on commit 20d1b64

Please sign in to comment.