Skip to content

Commit

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

site.Bindings.Add(bindingInfo, protocol);
site.TraceFailedRequestsLogging.Enabled = true;
site.TraceFailedRequestsLogging.Directory = installFolder + "\\Logs";
site.LogFile.Directory = installFolder + "\\Logs" + "\\W3svc" + site.Id.ToString(CultureInfo.InvariantCulture);
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.0")]
[assembly: AssemblyFileVersion("2.3.0")]
[assembly: AssemblyVersion("2.3.1")]
[assembly: AssemblyFileVersion("2.3.1")]
[assembly: NeutralResourcesLanguage("en")]
2 changes: 1 addition & 1 deletion nvQuickSite/Start.cs
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ private void btnDatabaseInfoNext_Click(object sender, EventArgs e)
this.InstallFolder,
this.chkSiteSpecificAppPool.Checked,
this.chkDeleteSiteIfExists.Checked,
this.certificates[this.cboCertificates.SelectedIndex]);
this.chkEnableSsl.Checked ? this.certificates[this.cboCertificates.SelectedIndex] : null);

FileSystemController.UpdateHostsFile(this.SiteName);

Expand Down
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.0"
"latestVersion": "2.3.1"
}

0 comments on commit 612ee44

Please sign in to comment.