diff --git a/letsencrypt-win b/letsencrypt-win index b32c0cbd5..6f862ec5f 160000 --- a/letsencrypt-win +++ b/letsencrypt-win @@ -1 +1 @@ -Subproject commit b32c0cbd51f7a0e2b50ad8ba0a84d3df54cd961f +Subproject commit 6f862ec5fa6ba11e16ac41d385598e03d1ddd6f8 diff --git a/letsencrypt-win-simple/Plugin/IISPlugin.cs b/letsencrypt-win-simple/Plugin/IISPlugin.cs index 67bd5ac14..520e9e807 100644 --- a/letsencrypt-win-simple/Plugin/IISPlugin.cs +++ b/letsencrypt-win-simple/Plugin/IISPlugin.cs @@ -32,11 +32,7 @@ public override List GetTargets() if (result.Count == 0) { - Console.WriteLine("No IIS bindings with host names were found. Please add one using IIS Manager. A host name and site path are required to verify domain ownership."); - } - else - { - Console.WriteLine("IIS Bindings"); + Console.WriteLine(" No IIS bindings with host names were found. Please add one using IIS Manager. A host name and site path are required to verify domain ownership."); } return result; diff --git a/letsencrypt-win-simple/Plugin/Plugin.cs b/letsencrypt-win-simple/Plugin/Plugin.cs index 1ed4fed87..5ae9853bd 100644 --- a/letsencrypt-win-simple/Plugin/Plugin.cs +++ b/letsencrypt-win-simple/Plugin/Plugin.cs @@ -7,6 +7,9 @@ namespace LetsEncrypt.ACME.Simple { + /// + /// To create a new server plugin, simply create a sub-class of Plugin in this project. It will be loaded and run automatically. + /// public abstract class Plugin { /// diff --git a/letsencrypt-win-simple/Program.cs b/letsencrypt-win-simple/Program.cs index 4585bf722..65df82510 100644 --- a/letsencrypt-win-simple/Program.cs +++ b/letsencrypt-win-simple/Program.cs @@ -190,13 +190,12 @@ static void Main(string[] args) catch (Exception e) { Console.ForegroundColor = ConsoleColor.Red; - var acmeWebException = e as ACME.AcmeClient.AcmeWebException; + var acmeWebException = e as AcmeClient.AcmeWebException; if (acmeWebException != null) { Console.WriteLine(acmeWebException.Message); Console.WriteLine("ACME Server Returned:"); Console.WriteLine(acmeWebException.Response.ContentAsString); - //Console.WriteLine(acme.) } else {