@@ -377,6 +377,10 @@ Commandline Examples:
377
377
<do >
378
378
<echo message =" Running .NET Framework tests for ${path}" />
379
379
<property name =" test.bin.dir" value =" ${path}/net452" />
380
+ <if test =" ${directory::exists(test.bin.dir) == false}" >
381
+ <property name =" test.bin.dir" value =" ${path}/net461" />
382
+ </if >
383
+
380
384
<property name =" test.assemblyname" value =" ${string::substring(path, string::last-index-of(path, '\') + 1, string::get-length(path) - string::last-index-of(path, '\') - 1)}" />
381
385
<property name =" test.assemblyfile" value =" ${test.assemblyname}.dll" />
382
386
<property name =" test.assemblyname.tocover" value =" ${string::substring(test.assemblyname,0,string::last-index-of(test.assemblyname, '.Tests') )}" />
@@ -411,6 +415,8 @@ Commandline Examples:
411
415
<include name =" ${spring.basedir}/test/Spring/Spring.Aop.Tests/Spring.Aop.Tests.2010.csproj" />
412
416
<include name =" ${spring.basedir}/test/Spring/Spring.Data.Tests/Spring.Data.Tests.2010.csproj" />
413
417
<include name =" ${spring.basedir}/test/Spring/Spring.Testing.NUnit.Tests/Spring.Testing.NUnit.Tests.2010.csproj" />
418
+ <include name =" ${spring.basedir}/test/Spring/Spring.Data.NHibernate5.Integration.Tests/Spring.Data.NHibernate5.Integration.Tests.2010.csproj" />
419
+ <include name =" ${spring.basedir}/test/Spring/Spring.Data.NHibernate5.Tests/Spring.Data.NHibernate5.Tests.2010.csproj" />
414
420
</items >
415
421
</in >
416
422
<do >
@@ -892,30 +898,6 @@ Commandline Examples:
892
898
</copy >
893
899
</if >
894
900
895
- <mkdir dir =" ${current.package.dir}/lib/NHibernate3" />
896
- <if test =" ${property::exists('build.allnamespaces') and not build.allnamespaces}" >
897
- <copy todir =" ${current.package.dir}/lib/NHibernate3" verbose =" ${copy-verbose}" >
898
- <fileset basedir =" lib/NHibernate3" >
899
- <include name =" **/*.dll" />
900
- <include name =" **/*.xml" />
901
- <include name =" **/*.license.txt" />
902
- <exclude name =" mono/**" />
903
- </fileset >
904
- </copy >
905
- </if >
906
-
907
- <mkdir dir =" ${current.package.dir}/lib/NHibernate4" />
908
- <if test =" ${property::exists('build.allnamespaces') and not build.allnamespaces}" >
909
- <copy todir =" ${current.package.dir}/lib/NHibernate4" verbose =" ${copy-verbose}" >
910
- <fileset basedir =" lib/NHibernate4" >
911
- <include name =" **/*.dll" />
912
- <include name =" **/*.xml" />
913
- <include name =" **/*.license.txt" />
914
- <exclude name =" mono/**" />
915
- </fileset >
916
- </copy >
917
- </if >
918
-
919
901
<if test =" ${property::exists('build.allnamespaces') and build.allnamespaces}" >
920
902
<copy todir =" ${current.package.dir}/lib" verbose =" ${copy-verbose}" >
921
903
<fileset basedir =" lib" >
@@ -1113,6 +1095,10 @@ Commandline Examples:
1113
1095
<include name =" */*/Spring.Web.Conversation.NHibernate4.xml" />
1114
1096
<include name =" */*/Spring.Web.Conversation.NHibernate4.pdb" />
1115
1097
1098
+ <include name =" */*/Spring.Web.Conversation.NHibernate5.dll" />
1099
+ <include name =" */*/Spring.Web.Conversation.NHibernate5.xml" />
1100
+ <include name =" */*/Spring.Web.Conversation.NHibernate5.pdb" />
1101
+
1116
1102
</fileset >
1117
1103
</copy >
1118
1104
@@ -1307,6 +1293,7 @@ Commandline Examples:
1307
1293
<include name =" src/Spring/Spring.Data/**" />
1308
1294
<include name =" src/Spring/Spring.Data.NHibernate3/**" />
1309
1295
<include name =" src/Spring/Spring.Data.NHibernate4/**" />
1296
+ <include name =" src/Spring/Spring.Data.NHibernate5/**" />
1310
1297
<include name =" src/Spring/Spring.Messaging/**" />
1311
1298
<include name =" src/Spring/Spring.Messaging.Nms/**" />
1312
1299
<include name =" src/Spring/Spring.Messaging.Ems/**" />
@@ -1317,6 +1304,7 @@ Commandline Examples:
1317
1304
<include name =" src/Spring/CommonAssemblyInfo.cs" />
1318
1305
<include name =" src/Spring/Spring.Web.Conversation.NHibernate3/**" />
1319
1306
<include name =" src/Spring/Spring.Web.Conversation.NHibernate4/**" />
1307
+ <include name =" src/Spring/Spring.Web.Conversation.NHibernate5/**" />
1320
1308
1321
1309
<include name =" test/Spring/Spring.Core.Tests/**" />
1322
1310
<include name =" test/Spring/Spring.Aop.Tests/**" />
@@ -1332,6 +1320,8 @@ Commandline Examples:
1332
1320
<include name =" test/Spring/Spring.Data.NHibernate4.Tests/**" />
1333
1321
<include name =" test/Spring/Spring.Data.NHibernate4.Integration.Tests/**" />
1334
1322
<include name =" test/Spring/Spring.Data.NHibernate4.NestedTxSuspension.Integration.Tests/**" />
1323
+ <include name =" test/Spring/Spring.Data.NHibernate5.Tests/**" />
1324
+ <include name =" test/Spring/Spring.Data.NHibernate5.Integration.Tests/**" />
1335
1325
<include name =" test/Spring/Spring.Messaging.Tests/**" />
1336
1326
<include name =" test/Spring/Spring.Messaging.Nms.Tests/**" />
1337
1327
<include name =" test/Spring/Spring.Messaging.Nms.Integration.Tests/**" />
@@ -1343,6 +1333,7 @@ Commandline Examples:
1343
1333
<include name =" test/Spring/CommonAssemblyInfo.cs" />
1344
1334
<include name =" test/Spring/Spring.Web.Conversation.NHibernate3.Tests/**" />
1345
1335
<include name =" test/Spring/Spring.Web.Conversation.NHibernate4.Tests/**" />
1336
+ <include name =" test/Spring/Spring.Web.Conversation.NHibernate5.Tests/**" />
1346
1337
1347
1338
<include name =" examples/Spring/Spring.Examples.build" />
1348
1339
<include name =" examples/Spring/Spring.AopQuickStart/**" />
0 commit comments