summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Configuration/MainArgumentsProvider.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.lib/Configuration/MainArgumentsProvider.cs')
-rw-r--r--src/main.lib/Configuration/MainArgumentsProvider.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main.lib/Configuration/MainArgumentsProvider.cs b/src/main.lib/Configuration/MainArgumentsProvider.cs
index 2f02081..6fd17fa 100644
--- a/src/main.lib/Configuration/MainArgumentsProvider.cs
+++ b/src/main.lib/Configuration/MainArgumentsProvider.cs
@@ -15,6 +15,7 @@ namespace PKISharp.WACS.Configuration
!string.IsNullOrEmpty(current.FriendlyName) ||
!string.IsNullOrEmpty(current.Installation) ||
!string.IsNullOrEmpty(current.Store) ||
+ !string.IsNullOrEmpty(current.Order) ||
!string.IsNullOrEmpty(current.Csr) ||
!string.IsNullOrEmpty(current.Target) ||
!string.IsNullOrEmpty(current.Validation);
@@ -98,10 +99,14 @@ namespace PKISharp.WACS.Configuration
.As("validationmode")
.SetDefault(Constants.Http01ChallengeType)
.WithDescription("Specify which validation mode to use. HTTP-01 is the default.");
+
+ parser.Setup(o => o.Order)
+ .As("order")
+ .WithDescription("Specify which order plugin to use. Single is the default.");
parser.Setup(o => o.Csr)
.As("csr")
- .WithDescription("Specify which csr plugin to use. RSA is the default.");
+ .WithDescription("Specify which CSR plugin to use. RSA is the default.");
parser.Setup(o => o.Store)
.As("store")