summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Configuration/MainArgumentsProvider.cs
diff options
context:
space:
mode:
authorWouterTinus <wouter.tinus@gmail.com>2019-10-06 14:10:10 +0200
committerWouterTinus <wouter.tinus@gmail.com>2019-10-06 14:10:10 +0200
commit856de9adac9b4d9fd6cb5ef5d4693da35e87cb75 (patch)
treef56aa671236485672cbcc4dab6f2365d9ab7aa7d /src/main.lib/Configuration/MainArgumentsProvider.cs
parente22577d27084d57c5a42e39bacc8b8f5c4dce388 (diff)
downloadletsencrypt-win-simple-856de9adac9b4d9fd6cb5ef5d4693da35e87cb75.zip
letsencrypt-win-simple-856de9adac9b4d9fd6cb5ef5d4693da35e87cb75.tar.gz
letsencrypt-win-simple-856de9adac9b4d9fd6cb5ef5d4693da35e87cb75.tar.bz2
Updates docs and improve support for custom legacy imports
Diffstat (limited to 'src/main.lib/Configuration/MainArgumentsProvider.cs')
-rw-r--r--src/main.lib/Configuration/MainArgumentsProvider.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.lib/Configuration/MainArgumentsProvider.cs b/src/main.lib/Configuration/MainArgumentsProvider.cs
index 694ca91..c77bfd4 100644
--- a/src/main.lib/Configuration/MainArgumentsProvider.cs
+++ b/src/main.lib/Configuration/MainArgumentsProvider.cs
@@ -13,7 +13,7 @@ namespace PKISharp.WACS.Configuration
// Basic options
parser.Setup(o => o.BaseUri)
.As("baseuri")
- .WithDescription("Address of the ACMEv2 server to use. The default endpoint can be modified in settings.config.");
+ .WithDescription("Address of the ACMEv2 server to use. The default endpoint can be modified in settings.json.");
parser.Setup(o => o.Import)
.As("import")
@@ -21,11 +21,11 @@ namespace PKISharp.WACS.Configuration
parser.Setup(o => o.ImportBaseUri)
.As("importbaseuri")
- .WithDescription("[--import] When importing scheduled renewals from version 1.9.x, this argument can change the address of the ACMEv1 server to import from. The default endpoint to import from can be modified in settings.config.");
+ .WithDescription("[--import] When importing scheduled renewals from version 1.9.x, this argument can change the address of the ACMEv1 server to import from. The default endpoint to import from can be modified in settings.json.");
parser.Setup(o => o.Test)
.As("test")
- .WithDescription("Enables testing behaviours in the program which may help with troubleshooting. By default this also switches the --baseuri to the ACME test endpoint. The default endpoint for test mode can be modified in settings.config.");
+ .WithDescription("Enables testing behaviours in the program which may help with troubleshooting. By default this also switches the --baseuri to the ACME test endpoint. The default endpoint for test mode can be modified in settings.json.");
parser.Setup(o => o.Verbose)
.As("verbose")