diff options
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Data/WixVersionLabel.cs | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/api/wix/WixToolset.Data/WixVersionLabel.cs b/src/api/wix/WixToolset.Data/WixVersionLabel.cs deleted file mode 100644 index c4227c49..00000000 --- a/src/api/wix/WixToolset.Data/WixVersionLabel.cs +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
2 | |||
3 | namespace WixToolset.Data | ||
4 | { | ||
5 | using System; | ||
6 | |||
7 | /// <summary> | ||
8 | /// Label in a <c>WixVersion</c>. | ||
9 | /// </summary> | ||
10 | [CLSCompliant(false)] | ||
11 | public class WixVersionLabel | ||
12 | { | ||
13 | /// <summary> | ||
14 | /// Creates a string only version label. | ||
15 | /// </summary> | ||
16 | /// <param name="label">String value for version label.</param> | ||
17 | public WixVersionLabel(string label) | ||
18 | { | ||
19 | this.Label = label; | ||
20 | } | ||
21 | |||
22 | /// <summary> | ||
23 | /// Creates a string version label with numeric value. | ||
24 | /// </summary> | ||
25 | /// <param name="label">String value for version label.</param> | ||
26 | /// <param name="numeric">Numeric value for the version label.</param> | ||
27 | public WixVersionLabel(string label, uint? numeric) | ||
28 | { | ||
29 | this.Label = label; | ||
30 | this.Numeric = numeric; | ||
31 | } | ||
32 | |||
33 | /// <summary> | ||
34 | /// Gets the string label value. | ||
35 | /// </summary> | ||
36 | public string Label { get; set; } | ||
37 | |||
38 | /// <summary> | ||
39 | /// Gets the optional numeric label value. | ||
40 | /// </summary> | ||
41 | public uint? Numeric { get; set; } | ||
42 | } | ||
43 | } | ||