sbohlen
49349ef94a
prevent assembly copy from 2.0 to current output dir under .net 4.0 build
2010-11-01 19:20:16 +00:00
sbohlen
a17316370b
fixing broken 4.0 daily build...helps if you actually DEFINE the target daily-build-4.0 BEFORE calling it :)
2010-11-01 18:03:10 +00:00
sbohlen
592edc46f2
fixing broken 3.5 daily build
2010-11-01 17:45:24 +00:00
sbohlen
e8fd761860
fixing broken 3.5 daily build
2010-11-01 17:14:44 +00:00
eeichinger
a997f32044
fixed SPRNET-1379, Calculator EnterpriseService example
2010-10-31 02:51:35 +00:00
eeichinger
9e6b5a0f70
fixed broken ConfigurationReaderTests
2010-10-31 02:40:02 +00:00
eeichinger
22adab08f6
cleanup
2010-10-31 02:23:18 +00:00
eeichinger
8939b2e320
allow for disabling automatic context registration by overriding property
2010-10-31 02:21:51 +00:00
sbohlen
5d07ee043e
Fixing broken build, see SPRNET-1383
2010-10-29 17:41:27 +00:00
sbohlen
6f8dd84a6c
SPRNETSPRNET-1384
...
Created separate builds for .NET 3.5 and .NET 4.0
2010-10-29 17:12:21 +00:00
sbohlen
74b503aee2
SPRNET-1384
...
remove .NET 4-specific lib folder contents (since build script copies this from the 2.0 folder now)
2010-10-29 17:03:50 +00:00
sbohlen
032032ec21
SPRNET-1382
...
Added comments to section 12.2.2 re: Transaction Management with NHibernate
2010-10-29 15:30:13 +00:00
sbohlen
7ebd03f5b4
* remove reference to HibernateTxScopeTransactionManager class added during a bug repro in re SPRNET-1380 and erroneously left in place/committed
...
* added linked-ref to HibernateTxScopeTransactionManager into the NH 3.0 -based project; HibernateTxScopeTransactionManager is required by NH 2.1.2 and later (right now, that means NH 3.0 as well)
2010-10-28 14:45:41 +00:00
sbohlen
92e8ac75a4
modify convenience build batch file to accept parameters (and pass them to the underlying NANT build script) in order to support param-passing via the batch file
2010-10-28 14:34:46 +00:00
sbohlen
286d6f4377
SPRNET-1364
...
changed def from DEBUG_DYNAMICX to DEBUG_DYNAMIC_DISABLED to make the intent of changing the def to disable it more explicit and less like an accident/typo; to re-enable DEBUG_DYNAMIC during development, etc., simply rename the def from DEBUG_DYMANIC_DISABLED back to DEBUG_DYNAMIC
2010-10-28 14:31:41 +00:00
lahma
360071b783
Fix Spring.Web.Mvc.Tests.2010.csproj NUnit reference to point to lib folder instead of GAC
2010-10-28 04:11:00 +00:00
sbohlen
3697d212eb
Introduce VS2010 instances of the sln and cspproj files for the example application
2010-10-27 16:48:34 +00:00
sbohlen
db5ea6d085
fixing broken build by ignoring integration tests not intended to be run on the CI server
2010-10-27 14:47:22 +00:00
sbohlen
124c18b59c
SPRNET-1343
...
Added initial support for ASP.NET MVC (v2)
2010-10-26 21:38:18 +00:00
bbaia
f49ab125f7
short-circuit evaluation of logic operators in SpEL [SPRNET-1381]
2010-10-18 08:40:11 +00:00
bbaia
5c4ad017a9
short-circuit evaluation of 'AND' logic operator in SpEl [SPRNET-1381]
2010-10-15 12:34:03 +00:00
lahma
9400f01791
NHibernate 3.0 Beta 1
2010-10-12 18:45:39 +00:00
sbohlen
8911336d19
SPRNET-1380
...
Cleaned up tests around HibernateTxScopeTransactionManager tests and added a few null-checks around the sessionHolder member to address situations where there's not (yet) a session but ambient (outer) transactions are underway
2010-10-11 21:18:17 +00:00
sbohlen
b3cc1b1034
SPRNET-1380
...
Introduced HibernateTxScopeTransactionManager class to coordinate rollback behavior between System.Transactions and NHibernate ITransaction instances based on changed made to NH in 2.1.2
2010-10-07 20:04:41 +00:00
sbohlen
a3e74e0c36
SPRNET-1250
...
Added documentation section on this approach.
2010-10-05 14:58:56 +00:00
sbohlen
78845eb327
SPRNET-1301
...
Added support for runtime resolution of multiple concurrent NHibernate Session Factories
2010-10-04 21:09:38 +00:00
sbohlen
b46a1b9a68
SPRNET-1329
...
Applied patch for compatibility with MONO
2010-10-01 17:56:45 +00:00
sbohlen
448753d110
SPRNET-1325
...
Introduced support for generics-friendly-get-type-as-string method and adjusted sdkRegularExpressionPointcut to rely upon this for pattern-matching
2010-10-01 16:17:43 +00:00
sbohlen
ce22e68a9d
Added comment to clarify the reasoning behind the call to Session.Lock(...) in the sample app to ensure that future misunderstandings as lead to this forum post don't reoccur: http://forum.springframework.net/showthread.php?t=7261
2010-09-30 18:03:29 +00:00
bbaia
227022824e
Attribute 'expression' for 'regex' element in the validation schema is not parsed correctly [SPRNET-1377]
2010-09-29 17:21:38 +00:00
sbohlen
0cb6a781b6
SPRNET-1264
...
Introduced fallback case to use the AppDomain's .BaseDirectory property instead of the .DyanmicDirectory property as the location for the generated assembly should the .DynamicDirectory property be NULL
2010-09-29 15:21:32 +00:00
bbaia
a4ff2a29c9
RegularExpressionValidator fails if full string is not matched [SPRNET-1122]
2010-09-29 08:46:15 +00:00
sbohlen
6ee2ae5ee2
SPRNET-1372
...
Initial support for native .NET 4 compilation introduced
2010-09-24 21:27:51 +00:00
sbohlen
70d2b5413f
SPRNET-1226
...
Update docs to reflect the requirement for a non-null, non-empty string cache key. Added guard clauses in the BaseCacheAttribute constructor to prevent passing null or empty string as the cache key argument. Tests added to ensure guard clauses behave as expected.
2010-09-22 17:48:41 +00:00
bbaia
55d0c40aa8
CachedAopProxyFactory doesn't take into account the ProxyTargetAttributes property for cache key generation [SPRNET-1371]
2010-09-22 10:21:20 +00:00
bbaia
bc3e560ad3
Add 'when' condition to the Reference Validator (SPRNET-1370)
2010-09-22 09:26:05 +00:00
markpollack
2086abb67d
SPRNET-1365 - Update to ActiveMQ NMS 1.4
...
SPRNET-1369 - NmsTemplate was not attempting to start the connection when calling RecieveAndConvert
2010-09-22 04:03:07 +00:00
markpollack
423ec64916
SPRNET-1365 - Update to ActiveMQ NMS 1.4
...
SPRNET-1369 - NmsTemplate was not attempting to start the connection when calling RecieveAndConvert
2010-09-22 04:00:24 +00:00
sbohlen
247092ebb3
fixing broken build due to new NUnit update and stale assembly binding redirects (this time with binding redirect syntax that should be understood by .NET 1.1!)
2010-09-21 19:54:58 +00:00
sbohlen
bd46aeb575
fixing broken build due to new NUnit update and stale assembly binding redirects
2010-09-21 19:42:15 +00:00
sbohlen
2b7f0f5f94
SPRNET-1368
...
Patch Applied. Elegant (if straightforward!) fix. Nice find re: the exposed error condition.
2010-09-21 19:34:54 +00:00
sbohlen
20196ec91f
test state reset moved to SetUp() method to ensure all tests can be run together
2010-09-21 19:18:30 +00:00
markpollack
abc23e2615
update nant
2010-09-21 17:50:29 +00:00
markpollack
6f43fd3e5f
SPRNET-1367 - Remove dependency of unit tests on DotNetMock framework
...
Spring.Core.Tests completed
2010-09-21 13:26:11 +00:00
markpollack
1e031f6a81
SPRNET-1367 - Remove dependency of unit tests on DotNetMock framework
...
Spring.Core.Tests completed
2010-09-21 13:24:55 +00:00
markpollack
dac1c093c9
SPRNET-1367 - Remove dependency of unit tests on DotNetMock framework
...
Start Spring.Aop.Tests
2010-09-21 13:13:54 +00:00
markpollack
b9d38ec34e
SPRNET-1367 - Remove dependency of unit tests on DotNetMock framework
...
Spring.Core.Tests completed
2010-09-21 05:18:13 +00:00
markpollack
139ce90484
update to nunit 2.5.7.10213
...
initial pass at compilation using .net 4.0 (not just side-by-side support)
2010-09-21 02:41:32 +00:00
sbohlen
11e5ab1834
added files that are new with NUnit 2.5.5 (oops!)
2010-09-20 20:55:47 +00:00
sbohlen
3dc0f5fc29
update NUnit to 2.5.5
2010-09-20 20:54:46 +00:00