aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-18 20:09:31 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-12-18 23:35:39 -0600
commitf1b37c3a4d620298f8c646ac0a308a6fae1b662d (patch)
tree51712eea98cc2ca090b18d30d93dad88c3f9ac8e /src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs
parent8e08acb229ade411b7418df63b14198220aaaaa7 (diff)
downloadwix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.tar.gz
wix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.tar.bz2
wix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.zip
Enable XML doc and delete obsolete IParseHelper methods.
Diffstat (limited to 'src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs')
-rw-r--r--src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs b/src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs
index d1d8f0c3..14b5dabb 100644
--- a/src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs
+++ b/src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs
@@ -1,4 +1,4 @@
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. 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 2
3namespace WixToolset.Extensibility.Data 3namespace WixToolset.Extensibility.Data
4{ 4{
@@ -7,8 +7,14 @@ namespace WixToolset.Extensibility.Data
7 /// </summary> 7 /// </summary>
8 public struct ExtensionCommandLineSwitch 8 public struct ExtensionCommandLineSwitch
9 { 9 {
10 /// <summary>
11 ///
12 /// </summary>
10 public string Switch { get; set; } 13 public string Switch { get; set; }
11 14
15 /// <summary>
16 ///
17 /// </summary>
12 public string Description { get; set; } 18 public string Description { get; set; }
13 } 19 }
14} 20}