Server component fails to install with ASPNET 4.5: Verification for ASP.NET 4.5

updated
This commit is contained in:
robvde 2012-10-27 22:28:22 +04:00
parent 50f0d4f2c0
commit d38f618072

View file

@ -605,6 +605,10 @@ namespace WebsitePanel.Setup
return false; return false;
int value = (int)regkey.GetValue("ASPNET", 0); int value = (int)regkey.GetValue("ASPNET", 0);
if (value != 1)
value = (int)regkey.GetValue("ASPNET45", 0);
return value == 1; return value == 1;
} }
} }