aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2023-01-15 19:17:29 -0600
committerSean Hall <r.sean.hall@gmail.com>2023-01-18 18:10:56 -0600
commitd180bc6df297422f189ffd08a0dd558bfbeba1ca (patch)
tree9eac5847ce2335548232480b0ccb197f5dda23a0 /src/api
parent853887b4e84df1965794802b7683f3a9aca3e930 (diff)
downloadwix-d180bc6df297422f189ffd08a0dd558bfbeba1ca.tar.gz
wix-d180bc6df297422f189ffd08a0dd558bfbeba1ca.tar.bz2
wix-d180bc6df297422f189ffd08a0dd558bfbeba1ca.zip
Add netfx:DotNetCoreSdkFeatureBandSearch.
7058
Diffstat (limited to 'src/api')
-rw-r--r--src/api/wix/WixToolset.Data/WixVersionLabel.cs43
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
3namespace 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}