diff options
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index 00618152..ed7cb60e 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -10781,7 +10781,7 @@ namespace WixToolset | |||
10781 | private void ParsePackageElement(XElement node, string productAuthor, string moduleId) | 10781 | private void ParsePackageElement(XElement node, string productAuthor, string moduleId) |
10782 | { | 10782 | { |
10783 | SourceLineNumber sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); | 10783 | SourceLineNumber sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); |
10784 | string codepage = "65001"; | 10784 | string codepage = "1252"; |
10785 | string comments = String.Format(CultureInfo.InvariantCulture, "This installer database contains the logic and data required to install {0}.", this.activeName); | 10785 | string comments = String.Format(CultureInfo.InvariantCulture, "This installer database contains the logic and data required to install {0}.", this.activeName); |
10786 | string keywords = "Installer"; | 10786 | string keywords = "Installer"; |
10787 | int msiVersion = 100; // lowest released version, really should be specified | 10787 | int msiVersion = 100; // lowest released version, really should be specified |
@@ -11422,7 +11422,7 @@ namespace WixToolset | |||
11422 | private void ParsePatchInformationElement(XElement node) | 11422 | private void ParsePatchInformationElement(XElement node) |
11423 | { | 11423 | { |
11424 | SourceLineNumber sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); | 11424 | SourceLineNumber sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); |
11425 | string codepage = "65001"; | 11425 | string codepage = "1252"; |
11426 | string comments = null; | 11426 | string comments = null; |
11427 | string keywords = "Installer,Patching,PCP,Database"; | 11427 | string keywords = "Installer,Patching,PCP,Database"; |
11428 | int msiVersion = 1; // Should always be 1 for patches | 11428 | int msiVersion = 1; // Should always be 1 for patches |