From d180bc6df297422f189ffd08a0dd558bfbeba1ca Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sun, 15 Jan 2023 19:17:29 -0600 Subject: Add netfx:DotNetCoreSdkFeatureBandSearch. 7058 --- src/api/wix/WixToolset.Data/WixVersionLabel.cs | 43 -------------------------- 1 file changed, 43 deletions(-) delete mode 100644 src/api/wix/WixToolset.Data/WixVersionLabel.cs (limited to 'src/api') 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 @@ -// 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. - -namespace WixToolset.Data -{ - using System; - - /// - /// Label in a WixVersion. - /// - [CLSCompliant(false)] - public class WixVersionLabel - { - /// - /// Creates a string only version label. - /// - /// String value for version label. - public WixVersionLabel(string label) - { - this.Label = label; - } - - /// - /// Creates a string version label with numeric value. - /// - /// String value for version label. - /// Numeric value for the version label. - public WixVersionLabel(string label, uint? numeric) - { - this.Label = label; - this.Numeric = numeric; - } - - /// - /// Gets the string label value. - /// - public string Label { get; set; } - - /// - /// Gets the optional numeric label value. - /// - public uint? Numeric { get; set; } - } -} -- cgit v1.2.3-55-g6feb