diff --git a/SabreTools.CommandLine.Test/FeatureTests.cs b/SabreTools.CommandLine.Test/FeatureTests.cs index 62e0eda..4381793 100644 --- a/SabreTools.CommandLine.Test/FeatureTests.cs +++ b/SabreTools.CommandLine.Test/FeatureTests.cs @@ -125,13 +125,13 @@ namespace SabreTools.CommandLine.Test /// private class MockFeature : Feature { - public MockFeature(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public MockFeature(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { } - public MockFeature(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public MockFeature(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { } diff --git a/SabreTools.CommandLine.Test/Inputs/UserInputTests.cs b/SabreTools.CommandLine.Test/Inputs/UserInputTests.cs index 7fdaa7b..531ea18 100644 --- a/SabreTools.CommandLine.Test/Inputs/UserInputTests.cs +++ b/SabreTools.CommandLine.Test/Inputs/UserInputTests.cs @@ -671,13 +671,13 @@ namespace SabreTools.CommandLine.Test.Inputs /// private class MockUserInput : UserInput { - public MockUserInput(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public MockUserInput(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { } - public MockUserInput(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public MockUserInput(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { } diff --git a/SabreTools.CommandLine/Feature.cs b/SabreTools.CommandLine/Feature.cs index abdd8b7..cdce148 100755 --- a/SabreTools.CommandLine/Feature.cs +++ b/SabreTools.CommandLine/Feature.cs @@ -24,13 +24,13 @@ namespace SabreTools.CommandLine #region Constructors - public Feature(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public Feature(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { } - public Feature(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public Feature(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { } diff --git a/SabreTools.CommandLine/Inputs/BooleanInput.cs b/SabreTools.CommandLine/Inputs/BooleanInput.cs index f0f72ba..f1cda56 100644 --- a/SabreTools.CommandLine/Inputs/BooleanInput.cs +++ b/SabreTools.CommandLine/Inputs/BooleanInput.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public BooleanInput(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public BooleanInput(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public BooleanInput(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public BooleanInput(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/FlagInput.cs b/SabreTools.CommandLine/Inputs/FlagInput.cs index afcead6..3c8c0c5 100644 --- a/SabreTools.CommandLine/Inputs/FlagInput.cs +++ b/SabreTools.CommandLine/Inputs/FlagInput.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public FlagInput(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public FlagInput(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = false; } - public FlagInput(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public FlagInput(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = false; } diff --git a/SabreTools.CommandLine/Inputs/Int16Input.cs b/SabreTools.CommandLine/Inputs/Int16Input.cs index b07c77b..a0436d0 100644 --- a/SabreTools.CommandLine/Inputs/Int16Input.cs +++ b/SabreTools.CommandLine/Inputs/Int16Input.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public Int16Input(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public Int16Input(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public Int16Input(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public Int16Input(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/Int32Input.cs b/SabreTools.CommandLine/Inputs/Int32Input.cs index 3b52395..8e62daf 100644 --- a/SabreTools.CommandLine/Inputs/Int32Input.cs +++ b/SabreTools.CommandLine/Inputs/Int32Input.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public Int32Input(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public Int32Input(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public Int32Input(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public Int32Input(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/Int64Input.cs b/SabreTools.CommandLine/Inputs/Int64Input.cs index 395edad..e12d16b 100644 --- a/SabreTools.CommandLine/Inputs/Int64Input.cs +++ b/SabreTools.CommandLine/Inputs/Int64Input.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public Int64Input(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public Int64Input(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public Int64Input(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public Int64Input(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/Int8Input.cs b/SabreTools.CommandLine/Inputs/Int8Input.cs index 35c1cc5..da0bd00 100644 --- a/SabreTools.CommandLine/Inputs/Int8Input.cs +++ b/SabreTools.CommandLine/Inputs/Int8Input.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public Int8Input(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public Int8Input(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public Int8Input(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public Int8Input(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/StringInput.cs b/SabreTools.CommandLine/Inputs/StringInput.cs index 701e550..93a2438 100644 --- a/SabreTools.CommandLine/Inputs/StringInput.cs +++ b/SabreTools.CommandLine/Inputs/StringInput.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public StringInput(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public StringInput(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public StringInput(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public StringInput(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/StringListInput.cs b/SabreTools.CommandLine/Inputs/StringListInput.cs index 9d17ed8..eda0039 100644 --- a/SabreTools.CommandLine/Inputs/StringListInput.cs +++ b/SabreTools.CommandLine/Inputs/StringListInput.cs @@ -10,14 +10,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public StringListInput(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public StringListInput(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public StringListInput(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public StringListInput(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/UInt16Input.cs b/SabreTools.CommandLine/Inputs/UInt16Input.cs index 484c51f..d75c57e 100644 --- a/SabreTools.CommandLine/Inputs/UInt16Input.cs +++ b/SabreTools.CommandLine/Inputs/UInt16Input.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public UInt16Input(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public UInt16Input(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public UInt16Input(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public UInt16Input(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/UInt32Input.cs b/SabreTools.CommandLine/Inputs/UInt32Input.cs index 7efd782..56ddaa9 100644 --- a/SabreTools.CommandLine/Inputs/UInt32Input.cs +++ b/SabreTools.CommandLine/Inputs/UInt32Input.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public UInt32Input(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public UInt32Input(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public UInt32Input(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public UInt32Input(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/UInt64Input.cs b/SabreTools.CommandLine/Inputs/UInt64Input.cs index dd2b94b..3f947bc 100644 --- a/SabreTools.CommandLine/Inputs/UInt64Input.cs +++ b/SabreTools.CommandLine/Inputs/UInt64Input.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public UInt64Input(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public UInt64Input(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public UInt64Input(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public UInt64Input(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/UInt8Input.cs b/SabreTools.CommandLine/Inputs/UInt8Input.cs index 9ac1511..0e84256 100644 --- a/SabreTools.CommandLine/Inputs/UInt8Input.cs +++ b/SabreTools.CommandLine/Inputs/UInt8Input.cs @@ -9,14 +9,14 @@ namespace SabreTools.CommandLine.Inputs { #region Constructors - public UInt8Input(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public UInt8Input(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { Value = null; } - public UInt8Input(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public UInt8Input(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { Value = null; } diff --git a/SabreTools.CommandLine/Inputs/UserInput.cs b/SabreTools.CommandLine/Inputs/UserInput.cs index 7260f14..be1a52c 100644 --- a/SabreTools.CommandLine/Inputs/UserInput.cs +++ b/SabreTools.CommandLine/Inputs/UserInput.cs @@ -47,20 +47,20 @@ namespace SabreTools.CommandLine.Inputs #region Constructors - public UserInput(string name, string flag, string description, string? detailedDescription = null) + public UserInput(string name, string flag, string description, string? detailed = null) { Name = name; Flags.Add(flag); Description = description; - DetailedDescription = detailedDescription; + DetailedDescription = detailed; } - public UserInput(string name, string[] flags, string description, string? detailedDescription = null) + public UserInput(string name, string[] flags, string description, string? detailed = null) { Name = name; Flags.AddRange(flags); Description = description; - DetailedDescription = detailedDescription; + DetailedDescription = detailed; } #endregion diff --git a/SabreTools.CommandLine/Inputs/UserInputT.cs b/SabreTools.CommandLine/Inputs/UserInputT.cs index 91f13e3..72a564d 100644 --- a/SabreTools.CommandLine/Inputs/UserInputT.cs +++ b/SabreTools.CommandLine/Inputs/UserInputT.cs @@ -12,13 +12,13 @@ namespace SabreTools.CommandLine.Inputs #region Constructors - public UserInput(string name, string flag, string description, string? detailedDescription = null) - : base(name, flag, description, detailedDescription) + public UserInput(string name, string flag, string description, string? detailed = null) + : base(name, flag, description, detailed) { } - public UserInput(string name, string[] flags, string description, string? detailedDescription = null) - : base(name, flags, description, detailedDescription) + public UserInput(string name, string[] flags, string description, string? detailed = null) + : base(name, flags, description, detailed) { }