User: johnsimons
Date: 2009/12/19 05:51 PM
Modified:
/InversionOfControl/trunk/src/Castle.MicroKernel/Registration/Strategies/
ServiceDescriptor.cs
/InversionOfControl/trunk/src/Castle.Windsor.Tests/Components/
CalculatorServiceWithAttributes.cs
/InversionOfControl/trunk/src/Castle.Windsor/
WindsorContainer.cs
Log:
Applied patch from Simon Cropp for IOC-ISSUE-185 - Missed 2 MarshalByRefObject
and a type.GetInterface
File Changes:
Directory: /InversionOfControl/trunk/src/Castle.Windsor/
========================================================
File [modified]: WindsorContainer.cs
Delta lines: +4 -0
===================================================================
---
InversionOfControl/trunk/src/Castle.Windsor.Tests/Components/CalculatorServiceWithAttributes.cs
2009-12-19 23:58:09 UTC (rev 6478)
+++
InversionOfControl/trunk/src/Castle.Windsor.Tests/Components/CalculatorServiceWithAttributes.cs
2009-12-20 00:51:53 UTC (rev 6479)
@@ -21,7 +21,11 @@
/// Summary description for CalculatorServiceWithAttributes.
/// </summary>
[Interceptor(typeof(ResultModifierInterceptor))]
+#if (SILVERLIGHT)
+ public class CalculatorServiceWithAttributes
+#else
public class CalculatorServiceWithAttributes : MarshalByRefObject
+#endif
{
public CalculatorServiceWithAttributes()
Directory: /InversionOfControl/trunk/src/Castle.Windsor.Tests/Components/
=========================================================================
File [modified]: CalculatorServiceWithAttributes.cs
Delta lines: +0 -0
===================================================================
Directory:
/InversionOfControl/trunk/src/Castle.MicroKernel/Registration/Strategies/
====================================================================================
File [modified]: ServiceDescriptor.cs
Delta lines: +4 -2
===================================================================
--- InversionOfControl/trunk/src/Castle.Windsor/WindsorContainer.cs
2009-12-19 23:58:09 UTC (rev 6478)
+++ InversionOfControl/trunk/src/Castle.Windsor/WindsorContainer.cs
2009-12-20 00:51:53 UTC (rev 6479)
@@ -30,10 +30,12 @@
/// Implementation of <see cref="IWindsorContainer"/>
/// which delegates to <see cref="IKernel"/> implementation.
/// </summary>
-#if (!SILVERLIGHT)
+#if (SILVERLIGHT)
+ public class WindsorContainer : IWindsorContainer
+#else
[Serializable]
+ public class WindsorContainer : MarshalByRefObject, IWindsorContainer
#endif
- public class WindsorContainer : MarshalByRefObject, IWindsorContainer
{
#region Fields
--
You received this message because you are subscribed to the Google Groups
"Castle Project Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/castle-project-commits?hl=en.