From: <bo...@us...> - 2014-11-24 13:34:18
|
Revision: 547 http://sourceforge.net/p/xmlunit/code/547 Author: bodewig Date: 2014-11-24 13:34:14 +0000 (Mon, 24 Nov 2014) Log Message: ----------- no reason to copy around sources Modified Paths: -------------- trunk/xmlunit/xmlunit.nant.build Property Changed: ---------------- trunk/xmlunit/ Index: trunk/xmlunit =================================================================== --- trunk/xmlunit 2013-09-16 12:15:24 UTC (rev 546) +++ trunk/xmlunit 2014-11-24 13:34:14 UTC (rev 547) Property changes on: trunk/xmlunit ___________________________________________________________________ Added: svn:ignore ## -0,0 +1,2 ## +build +docbook.properties Modified: trunk/xmlunit/xmlunit.nant.build =================================================================== --- trunk/xmlunit/xmlunit.nant.build 2013-09-16 12:15:24 UTC (rev 546) +++ trunk/xmlunit/xmlunit.nant.build 2014-11-24 13:34:14 UTC (rev 547) @@ -18,14 +18,14 @@ overwrite="false"/> <property name="base.dir" value="${project::get-base-directory()}" overwrite="false"/> - <property name="core.src.dir" value="${base.dir}/src/main/net-core" overwrite="false"/> + <property name="core.src.dir" value="src/main/net-core" overwrite="false"/> <property name="core.tests.src.dir" value="${base.dir}/src/tests/net-core" overwrite="false"/> - <property name="constraints.src.dir" value="${base.dir}/src/main/net-constraints" overwrite="false"/> + <property name="constraints.src.dir" value="src/main/net-constraints" overwrite="false"/> <property name="constraints.tests.src.dir" value="${base.dir}/src/tests/net-constraints" overwrite="false"/> - <property name="build.dir" value="${base.dir}/build/net" overwrite="false"/> + <property name="build.dir" value="build/net" overwrite="false"/> <property name="gen.src.dir" value="${build.dir}/generated" overwrite="false"/> <property name="gen.core.dir" value="${gen.src.dir}/core" @@ -77,15 +77,11 @@ value="${project::get-name()}-core.tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100fdec9d5858956ff10ff9cf39935441a7d4a216475a467e951ddd8fcce0b74443696680a6cfb58f8b1d96166acb76f9eae0431a223cecb30e224c21f30e57c457747f6ba176e6c22f48e105b200b458509b6de815cccdfc9ebe59ae4024c4b8659d2f2fcb65b1688f8327b10c96ed7e5f536ba6a1978ae86aca438439efbd6cb6"/> </attributes> </asminfo> - <copy todir="${gen.core.dir}"> - <fileset basedir="${core.src.dir}"> - <include name="**/*.cs"/> - </fileset> - </copy> <csc target="library" output="${bin.dir}/${project::get-name()}-core.dll" debug="true" verbose="${csc.verbose}" keyfile="xmlunit.snk"> - <sources basedir="${gen.core.dir}"> - <include name="**/*.cs"/> + <sources basedir="${base.dir}"> + <include name="${gen.core.dir}**/*.cs"/> + <include name="${core.src.dir}/**/*.cs"/> </sources> </csc> </target> @@ -110,15 +106,11 @@ value="${project::get-name()}-constraints.tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100fdec9d5858956ff10ff9cf39935441a7d4a216475a467e951ddd8fcce0b74443696680a6cfb58f8b1d96166acb76f9eae0431a223cecb30e224c21f30e57c457747f6ba176e6c22f48e105b200b458509b6de815cccdfc9ebe59ae4024c4b8659d2f2fcb65b1688f8327b10c96ed7e5f536ba6a1978ae86aca438439efbd6cb6"/> </attributes> </asminfo> - <copy todir="${gen.constraints.dir}"> - <fileset basedir="${constraints.src.dir}"> - <include name="**/*.cs"/> - </fileset> - </copy> <csc target="library" output="${bin.dir}/${project::get-name()}-constraints.dll" debug="true" verbose="${csc.verbose}" keyfile="xmlunit.snk"> - <sources basedir="${gen.constraints.dir}"> - <include name="**/*.cs"/> + <sources basedir="${base.dir}"> + <include name="${gen.constraints.dir}/**/*.cs"/> + <include name="${constraints.src.dir}/**/*.cs"/> </sources> <references basedir="${bin.dir}"> <include name="${project::get-name()}-core.dll"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |