Răsfoiți Sursa

TARGET_JVM: add runtime support for ConnectionStringsExpressionBuilder

svn path=/trunk/mcs/; revision=64933
Konstantin Triger 19 ani în urmă
părinte
comite
0e964af3de

+ 18 - 0
mcs/class/System.Web/System.Web.J2EE/J2EEUtils.cs

@@ -148,3 +148,21 @@ namespace System.Web.J2EE
 		}
 	}
 }
+
+#if !CODEDOM_SUPPORT
+//stubs for CodeDom symbols
+namespace System.CodeDom
+{
+	public class CodeObject
+	{
+		protected CodeObject () { }
+
+		public System.Collections.IDictionary UserData { get { throw new NotSupportedException (); } }
+	}
+
+	public class CodeExpression : CodeObject
+	{
+		protected CodeExpression () { }
+	}
+}
+#endif

+ 5 - 0
mcs/class/System.Web/System.Web20.vmwcsproj

@@ -1083,6 +1083,11 @@
 			<Link>Consts.cs.in</Link>
 		</Compile>
 		<Compile Include="Assembly\AssemblyInfo.cs" />
+		<Compile Include="System.Web.Compilation\ConnectionStringsExpressionBuilder.cs" />
+		<Compile Include="System.Web.Compilation\ExpressionBuilder.cs" />
+		<Compile Include="System.Web.Compilation\ExpressionBuilderContext.cs" />
+		<Compile Include="System.Web.Compilation\ExpressionEditorAttribute.cs" />
+		<Compile Include="System.Web.Compilation\ExpressionPrefixAttribute.cs" />
 		<Compile Include="System.Web.Compilation\ILocation.cs">
 			<SubType>Code</SubType>
 		</Compile>