diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 10:22:20 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 20:32:16 +1000 |
| commit | d7650a48368f15468d721f4d0729bbf60c7c1666 (patch) | |
| tree | f50045ba42cd568259fbce5bd67bc773975a5000 /src/WixToolset.Core | |
| parent | 5a19a39a72d87ed96a6254f65da67b4258fef478 (diff) | |
| download | wix-d7650a48368f15468d721f4d0729bbf60c7c1666.tar.gz wix-d7650a48368f15468d721f4d0729bbf60c7c1666.tar.bz2 wix-d7650a48368f15468d721f4d0729bbf60c7c1666.zip | |
Fix typo in SummaryInformationType.
Diffstat (limited to 'src/WixToolset.Core')
| -rw-r--r-- | src/WixToolset.Core/Compiler_2.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/WixToolset.Core/Compiler_2.cs b/src/WixToolset.Core/Compiler_2.cs index d7cb36bc..85fb9e4c 100644 --- a/src/WixToolset.Core/Compiler_2.cs +++ b/src/WixToolset.Core/Compiler_2.cs | |||
| @@ -865,67 +865,67 @@ namespace WixToolset.Core | |||
| 865 | { | 865 | { |
| 866 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 866 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 867 | { | 867 | { |
| 868 | PropertyId = SumaryInformationType.Codepage, | 868 | PropertyId = SummaryInformationType.Codepage, |
| 869 | Value = codepage | 869 | Value = codepage |
| 870 | }); | 870 | }); |
| 871 | 871 | ||
| 872 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 872 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 873 | { | 873 | { |
| 874 | PropertyId = SumaryInformationType.Title, | 874 | PropertyId = SummaryInformationType.Title, |
| 875 | Value = "Installation Database" | 875 | Value = "Installation Database" |
| 876 | }); | 876 | }); |
| 877 | 877 | ||
| 878 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 878 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 879 | { | 879 | { |
| 880 | PropertyId = SumaryInformationType.Subject, | 880 | PropertyId = SummaryInformationType.Subject, |
| 881 | Value = packageName | 881 | Value = packageName |
| 882 | }); | 882 | }); |
| 883 | 883 | ||
| 884 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 884 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 885 | { | 885 | { |
| 886 | PropertyId = SumaryInformationType.Author, | 886 | PropertyId = SummaryInformationType.Author, |
| 887 | Value = packageAuthor | 887 | Value = packageAuthor |
| 888 | }); | 888 | }); |
| 889 | 889 | ||
| 890 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 890 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 891 | { | 891 | { |
| 892 | PropertyId = SumaryInformationType.Keywords, | 892 | PropertyId = SummaryInformationType.Keywords, |
| 893 | Value = keywords | 893 | Value = keywords |
| 894 | }); | 894 | }); |
| 895 | 895 | ||
| 896 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 896 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 897 | { | 897 | { |
| 898 | PropertyId = SumaryInformationType.Comments, | 898 | PropertyId = SummaryInformationType.Comments, |
| 899 | Value = comments | 899 | Value = comments |
| 900 | }); | 900 | }); |
| 901 | 901 | ||
| 902 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 902 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 903 | { | 903 | { |
| 904 | PropertyId = SumaryInformationType.PlatformAndLanguage, | 904 | PropertyId = SummaryInformationType.PlatformAndLanguage, |
| 905 | Value = String.Format(CultureInfo.InvariantCulture, "{0};{1}", platform, packageLanguages) | 905 | Value = String.Format(CultureInfo.InvariantCulture, "{0};{1}", platform, packageLanguages) |
| 906 | }); | 906 | }); |
| 907 | 907 | ||
| 908 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 908 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 909 | { | 909 | { |
| 910 | PropertyId = SumaryInformationType.PackageCode, | 910 | PropertyId = SummaryInformationType.PackageCode, |
| 911 | Value = packageCode | 911 | Value = packageCode |
| 912 | }); | 912 | }); |
| 913 | 913 | ||
| 914 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 914 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 915 | { | 915 | { |
| 916 | PropertyId = SumaryInformationType.WindowsInstallerVersion, | 916 | PropertyId = SummaryInformationType.WindowsInstallerVersion, |
| 917 | Value = msiVersion.ToString(CultureInfo.InvariantCulture) | 917 | Value = msiVersion.ToString(CultureInfo.InvariantCulture) |
| 918 | }); | 918 | }); |
| 919 | 919 | ||
| 920 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 920 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 921 | { | 921 | { |
| 922 | PropertyId = SumaryInformationType.WordCount, | 922 | PropertyId = SummaryInformationType.WordCount, |
| 923 | Value = sourceBits.ToString(CultureInfo.InvariantCulture) | 923 | Value = sourceBits.ToString(CultureInfo.InvariantCulture) |
| 924 | }); | 924 | }); |
| 925 | 925 | ||
| 926 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 926 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 927 | { | 927 | { |
| 928 | PropertyId = SumaryInformationType.Security, | 928 | PropertyId = SummaryInformationType.Security, |
| 929 | Value = YesNoDefaultType.No == security ? "0" : YesNoDefaultType.Yes == security ? "4" : "2" | 929 | Value = YesNoDefaultType.No == security ? "0" : YesNoDefaultType.Yes == security ? "4" : "2" |
| 930 | }); | 930 | }); |
| 931 | } | 931 | } |
| @@ -1002,13 +1002,13 @@ namespace WixToolset.Core | |||
| 1002 | { | 1002 | { |
| 1003 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1003 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1004 | { | 1004 | { |
| 1005 | PropertyId = SumaryInformationType.Codepage, | 1005 | PropertyId = SummaryInformationType.Codepage, |
| 1006 | Value = codepage | 1006 | Value = codepage |
| 1007 | }); | 1007 | }); |
| 1008 | 1008 | ||
| 1009 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1009 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1010 | { | 1010 | { |
| 1011 | PropertyId = SumaryInformationType.Title, | 1011 | PropertyId = SummaryInformationType.Title, |
| 1012 | Value = "Patch" | 1012 | Value = "Patch" |
| 1013 | }); | 1013 | }); |
| 1014 | 1014 | ||
| @@ -1016,7 +1016,7 @@ namespace WixToolset.Core | |||
| 1016 | { | 1016 | { |
| 1017 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1017 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1018 | { | 1018 | { |
| 1019 | PropertyId = SumaryInformationType.Subject, | 1019 | PropertyId = SummaryInformationType.Subject, |
| 1020 | Value = packageName | 1020 | Value = packageName |
| 1021 | }); | 1021 | }); |
| 1022 | } | 1022 | } |
| @@ -1025,7 +1025,7 @@ namespace WixToolset.Core | |||
| 1025 | { | 1025 | { |
| 1026 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1026 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1027 | { | 1027 | { |
| 1028 | PropertyId = SumaryInformationType.Author, | 1028 | PropertyId = SummaryInformationType.Author, |
| 1029 | Value = packageAuthor | 1029 | Value = packageAuthor |
| 1030 | }); | 1030 | }); |
| 1031 | } | 1031 | } |
| @@ -1034,7 +1034,7 @@ namespace WixToolset.Core | |||
| 1034 | { | 1034 | { |
| 1035 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1035 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1036 | { | 1036 | { |
| 1037 | PropertyId = SumaryInformationType.Keywords, | 1037 | PropertyId = SummaryInformationType.Keywords, |
| 1038 | Value = keywords | 1038 | Value = keywords |
| 1039 | }); | 1039 | }); |
| 1040 | } | 1040 | } |
| @@ -1043,26 +1043,26 @@ namespace WixToolset.Core | |||
| 1043 | { | 1043 | { |
| 1044 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1044 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1045 | { | 1045 | { |
| 1046 | PropertyId = SumaryInformationType.Comments, | 1046 | PropertyId = SummaryInformationType.Comments, |
| 1047 | Value = comments | 1047 | Value = comments |
| 1048 | }); | 1048 | }); |
| 1049 | } | 1049 | } |
| 1050 | 1050 | ||
| 1051 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1051 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1052 | { | 1052 | { |
| 1053 | PropertyId = SumaryInformationType.WindowsInstallerVersion, | 1053 | PropertyId = SummaryInformationType.WindowsInstallerVersion, |
| 1054 | Value = msiVersion.ToString(CultureInfo.InvariantCulture) | 1054 | Value = msiVersion.ToString(CultureInfo.InvariantCulture) |
| 1055 | }); | 1055 | }); |
| 1056 | 1056 | ||
| 1057 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1057 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1058 | { | 1058 | { |
| 1059 | PropertyId = SumaryInformationType.WordCount, | 1059 | PropertyId = SummaryInformationType.WordCount, |
| 1060 | Value = "0" | 1060 | Value = "0" |
| 1061 | }); | 1061 | }); |
| 1062 | 1062 | ||
| 1063 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) | 1063 | this.Core.AddTuple(new SummaryInformationTuple(sourceLineNumbers) |
| 1064 | { | 1064 | { |
| 1065 | PropertyId = SumaryInformationType.Security, | 1065 | PropertyId = SummaryInformationType.Security, |
| 1066 | Value = YesNoDefaultType.No == security ? "0" : YesNoDefaultType.Yes == security ? "4" : "2" | 1066 | Value = YesNoDefaultType.No == security ? "0" : YesNoDefaultType.Yes == security ? "4" : "2" |
| 1067 | }); | 1067 | }); |
| 1068 | } | 1068 | } |
