Skip to content

Commit

Permalink
Merge pull request #372 from nvisionative/develop
Browse files Browse the repository at this point in the history
Merge `develop` into `main` for `2.3.2` release
  • Loading branch information
david-poindexter authored Feb 6, 2023
2 parents 612ee44 + dc80f91 commit 718d15e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions nvQuickSite/Controllers/IISController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ internal static void CreateSite(string siteName, string installFolder, bool useS
if (certificate != null)
{
bindingInfo = "*:443:" + siteName;
protocol = "https";
site.Bindings.Add(bindingInfo, protocol);
site.Bindings.Add(bindingInfo, certificate.GetCertHash(), "My");
}

site.TraceFailedRequestsLogging.Enabled = true;
Expand Down
4 changes: 2 additions & 2 deletions nvQuickSite/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.1")]
[assembly: AssemblyFileVersion("2.3.1")]
[assembly: AssemblyVersion("2.3.2")]
[assembly: AssemblyFileVersion("2.3.2")]
[assembly: NeutralResourcesLanguage("en")]
2 changes: 1 addition & 1 deletion nvQuickSite/data/latestVersion.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"latestVersion": "2.3.1"
"latestVersion": "2.3.2"
}

0 comments on commit 718d15e

Please sign in to comment.