SPRNET-1509 upgrade to NUnit 2.6, use NuGet packages

This commit is contained in:
Marko Lahma
2013-12-24 13:32:38 +02:00
parent 373ce41e76
commit ed29a994b4
195 changed files with 232 additions and 62507 deletions

View File

@@ -429,6 +429,7 @@ Commandline Examples:
<property name="nh33.lib.dir" value="${spring.basedir}/packages/NHibernate.3.3.3.4001/lib/Net35"/>
<property name="iesi33.lib.dir" value="${spring.basedir}/packages/Iesi.Collections.3.3.3.4001/lib/Net35"/>
<property name="quartz2.lib.dir" value="${spring.basedir}/packages/Quartz.2.2.1/lib/net35"/>
<property name="nunit.lib.dir" value="${spring.basedir}/packages/NUnit.2.6.3/lib"/>
<!-- we use same libs for both 4.0 and 4.5 builds -->
<if test="${nant.settings.currentframework == 'net-4.5' or nant.settings.currentframework == 'net-4.5'}">
@@ -646,6 +647,13 @@ Commandline Examples:
<exclude name="nunit.core.*" />
</fileset>
</copy>
<!-- copy nuget libs -->
<copy todir="${current.bin.dir}" verbose="${copy-verbose}">
<fileset basedir="${nunit.lib.dir}">
<include name="*.dll"/>
<include name="*.xml"/>
</fileset>
</copy>
</target>
<target name="copylibs">