Fixed Spring.Services.build to only copy Spring.* and Common.Logging DLLs build dir before build (this was presumably the actual culprit for wrong NH3 build references)

This commit is contained in:
lahma
2010-12-09 16:16:44 +00:00
parent ac19a0d1a9
commit ebdabeb143

View File

@@ -16,9 +16,10 @@
<echo message="-----------------"/>
<copy todir="${current.bin.dir}" overwrite="true" failonerror="true" verbose="${copy-verbose}">
<fileset basedir="${bin.dir.to.use}">
<include name="*.dll"/>
<include name="*.pdb"/>
<include name="*.xml"/>
<include name="Spring.**.dll"/>
<include name="Spring.**.pdb"/>
<include name="Spring.**.xml"/>
<include name="Common.Logging.*"/>
<exclude name="System.Web.Extensions.dll" if="${net-3.5}"/>
<exclude name="System.Web.Extensions.dll" if="${net-4.0}"/>
<exclude name="Spring.Services.dll"/>
@@ -31,9 +32,10 @@
<if test="${net-3.0.installed and net-3.0 and not net-4.0}">
<copy todir="${current.bin.dir}" overwrite="true" failonerror="true" verbose="${copy-verbose}">
<fileset basedir="${bin.dir.to.use}">
<include name="*.dll"/>
<include name="*.pdb"/>
<include name="*.xml"/>
<include name="Spring.**.dll"/>
<include name="Spring.**.pdb"/>
<include name="Spring.**.xml"/>
<include name="Common.Logging.*"/>
<exclude name="System.Web.Extensions.dll" if="${net-3.5}"/>
<exclude name="System.Web.Extensions.dll" if="${net-4.0}"/>
<exclude name="Spring.Services.dll"/>