diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-18 20:09:31 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-18 23:35:39 -0600 |
| commit | f1b37c3a4d620298f8c646ac0a308a6fae1b662d (patch) | |
| tree | 51712eea98cc2ca090b18d30d93dad88c3f9ac8e /src/WixToolset.Extensibility/CompilerConstants.cs | |
| parent | 8e08acb229ade411b7418df63b14198220aaaaa7 (diff) | |
| download | wix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.tar.gz wix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.tar.bz2 wix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.zip | |
Enable XML doc and delete obsolete IParseHelper methods.
Diffstat (limited to 'src/WixToolset.Extensibility/CompilerConstants.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/CompilerConstants.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/CompilerConstants.cs b/src/WixToolset.Extensibility/CompilerConstants.cs index f26456fb..73ff685c 100644 --- a/src/WixToolset.Extensibility/CompilerConstants.cs +++ b/src/WixToolset.Extensibility/CompilerConstants.cs | |||
| @@ -9,11 +9,34 @@ namespace WixToolset.Extensibility | |||
| 9 | /// </summary> | 9 | /// </summary> |
| 10 | public static class CompilerConstants | 10 | public static class CompilerConstants |
| 11 | { | 11 | { |
| 12 | /// <summary> | ||
| 13 | /// | ||
| 14 | /// </summary> | ||
| 12 | public const int IntegerNotSet = int.MinValue; | 15 | public const int IntegerNotSet = int.MinValue; |
| 16 | |||
| 17 | /// <summary> | ||
| 18 | /// | ||
| 19 | /// </summary> | ||
| 13 | public const int IllegalInteger = int.MinValue + 1; | 20 | public const int IllegalInteger = int.MinValue + 1; |
| 21 | |||
| 22 | /// <summary> | ||
| 23 | /// | ||
| 24 | /// </summary> | ||
| 14 | public const long LongNotSet = long.MinValue; | 25 | public const long LongNotSet = long.MinValue; |
| 26 | |||
| 27 | /// <summary> | ||
| 28 | /// | ||
| 29 | /// </summary> | ||
| 15 | public const long IllegalLong = long.MinValue + 1; | 30 | public const long IllegalLong = long.MinValue + 1; |
| 31 | |||
| 32 | /// <summary> | ||
| 33 | /// | ||
| 34 | /// </summary> | ||
| 16 | public const string IllegalGuid = "IllegalGuid"; | 35 | public const string IllegalGuid = "IllegalGuid"; |
| 36 | |||
| 37 | /// <summary> | ||
| 38 | /// | ||
| 39 | /// </summary> | ||
| 17 | public static readonly Version IllegalVersion = new Version(Int32.MaxValue, Int32.MaxValue, Int32.MaxValue, Int32.MaxValue); | 40 | public static readonly Version IllegalVersion = new Version(Int32.MaxValue, Int32.MaxValue, Int32.MaxValue, Int32.MaxValue); |
| 18 | } | 41 | } |
| 19 | } | 42 | } |
