stevel 2003/09/22 23:29:20
Modified: src/etc/testcases/taskdefs/optional WsdlToDotnet.xml
Log:
the fix to DotnetCompile forced vbc to explicitly reference things. hmm.
Revision Changes Path
1.5 +8 -1 ant/src/etc/testcases/taskdefs/optional/WsdlToDotnet.xml
Index: WsdlToDotnet.xml
===================================================================
RCS file: /home/cvs/ant/src/etc/testcases/taskdefs/optional/WsdlToDotnet.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- WsdlToDotnet.xml 8 Oct 2002 05:54:59 -0000 1.4
+++ WsdlToDotnet.xml 23 Sep 2003 06:29:20 -0000 1.5
@@ -19,6 +19,9 @@
<property name="endpoint.wsdl"
value="http://nagoya.apache.org:5049/Axis/StockQuoteService.jws?wsdl" />
+ <property name="vb.references"
+
value="System.Web.dll,System.xml.dll,System.dll,System.Web.Services.dll"/>
+
<target name="init" depends="validate">
<mkdir dir="${build.dir}"/>
<mkdir dir="${cache.dir}"/>
@@ -148,7 +151,10 @@
srcDir="${src.dir}"
destFile="${out.app}"
targetType="${out.type}"
- />
+ references="${vb.references}"
+ >
+
+ </vbc>
<available property="app.created" file="${out.app}"/>
<fail unless="app.created">No app created</fail>
</target>
@@ -167,6 +173,7 @@
optionExplicit="true"
optionStrict="false"
optionCompare="text"
+ references="${vb.references}"
/>
<available property="app.created" file="${out.app}"/>
<fail unless="app.created">No app created</fail>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]