From d38f6180721d004f565eddaa44f93633618c4c7c Mon Sep 17 00:00:00 2001 From: robvde Date: Sat, 27 Oct 2012 22:28:22 +0400 Subject: [PATCH] Server component fails to install with ASPNET 4.5: Verification for ASP.NET 4.5 updated --- .../WebsitePanel.Setup/Wizard/ConfigurationCheckPage.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/WebsitePanel.Installer/Sources/WebsitePanel.Setup/Wizard/ConfigurationCheckPage.cs b/WebsitePanel.Installer/Sources/WebsitePanel.Setup/Wizard/ConfigurationCheckPage.cs index 5b30d56a..30838eb5 100644 --- a/WebsitePanel.Installer/Sources/WebsitePanel.Setup/Wizard/ConfigurationCheckPage.cs +++ b/WebsitePanel.Installer/Sources/WebsitePanel.Setup/Wizard/ConfigurationCheckPage.cs @@ -605,6 +605,10 @@ namespace WebsitePanel.Setup return false; int value = (int)regkey.GetValue("ASPNET", 0); + + if (value != 1) + value = (int)regkey.GetValue("ASPNET45", 0); + return value == 1; } }