Răsfoiți Sursa

consider section 'system.web/deployment' is not supported for TARGET_J2EE

svn path=/trunk/mcs/; revision=81380
Igor Zelmanovich 18 ani în urmă
părinte
comite
7d545bda2b

+ 4 - 0
mcs/class/System.Web.Extensions/System.Web.UI/ScriptManager.cs

@@ -229,8 +229,12 @@ namespace System.Web.UI
 
 		bool IsDeploymentRetail {
 			get {
+#if TARGET_J2EE
+				return false;
+#else
 				DeploymentSection deployment = (DeploymentSection) WebConfigurationManager.GetSection ("system.web/deployment");
 				return deployment.Retail;
+#endif
 			}
 		}