Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="ManagedOpenSsl64, Version=0.6.1.0, Culture=neutral, processorArchitecture=AMD64">
<HintPath>..\packages\ManagedOpenSsl64.0.6.1.1\lib\net20\ManagedOpenSsl64.dll</HintPath>
<Private>True</Private>
<HintPath>..\packages\ManagedOpenSsl64.0.6.1.3\lib\net20\ManagedOpenSsl64.dll</HintPath>
</Reference>
<Reference Include="System" />
</ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions ACMESharp/ACMESharp.Providers.IIS/IisInstallerProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ public class IisInstallerProvider : IInstallerProvider
ParameterType.BOOLEAN, label: "Force",
desc: "An optional flag to overwrite an existing binding matching the target criteria");

public static readonly ParameterDetail KEEP_EXISTING_SSL_FLAGS = new ParameterDetail(
nameof(IisInstaller.Force),
ParameterType.BOOLEAN, label: "KeepExistingSslFlags",
desc: "An optional flag to allow an existing binding to keep its SSL Flags as per the original binding");
public static readonly ParameterDetail KEEP_EXISTING_SSL_FLAGS = new ParameterDetail(
nameof(IisInstaller.KeepExistingSslFlags),
ParameterType.BOOLEAN, label: "KeepExistingSslFlags",
desc: "An optional flag to allow an existing binding to keep its SSL Flags as per the original binding");

public static readonly ParameterDetail CERTIFICATE_FRIENDLY_NAME = new ParameterDetail(
public static readonly ParameterDetail CERTIFICATE_FRIENDLY_NAME = new ParameterDetail(
nameof(IisInstaller.CertificateFriendlyName),
ParameterType.TEXT, label: "Certificate Friendly Name",
desc: "An optional user-facing label to assign the certificate"
Expand Down