From 5c4b348e80cd34f6a949505cda7dd3a1435ca823 Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Sat, 6 Jul 2013 12:13:18 +0200 Subject: [PATCH] Fixes build --- mcs/class/System.Web/System.Web/HttpRuntime.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mcs/class/System.Web/System.Web/HttpRuntime.cs b/mcs/class/System.Web/System.Web/HttpRuntime.cs index ffbd614de05..7af3596a4c5 100644 --- a/mcs/class/System.Web/System.Web/HttpRuntime.cs +++ b/mcs/class/System.Web/System.Web/HttpRuntime.cs @@ -331,8 +331,11 @@ namespace System.Web public static bool UsingIntegratedPipeline { get { return false; } } #if NET_4_5 - public static IISVersion { - get { return null; } // Null means not hosted by IIS + public static Version IISVersion { + get { + // Null means not hosted by IIS + return null; + } } #endif -- 2.25.1