User: xtoff
Date: 2009/12/21 11:08 PM

Modified:
 /InversionOfControl/trunk/src/Castle.MicroKernel/SubSystems/
  AbstractSubSystem.cs
 /InversionOfControl/trunk/src/Castle.Windsor.Tests/
  Castle.Windsor.Tests-vs2008-SL.csproj
 /InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/
  ConfigHelper.cs, InvalidConfigTestCase.cs, SingletonComponentsTestCase.cs, 
SingletonStartableTestCase.cs, SubscriberWithDependenciesTestCase.cs, 
WiringTestBase.cs
 /InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/
  AbstractRemoteTestCase.cs, AppDomainFactory.cs, CalcServiceImpl.cs, 
ChangeResultInterceptor.cs, ConfigHelper.cs, 
ConfigurableRegistrationTestCase.cs, CustomToStringService.cs, 
FacilityLifeCycleTestCase.cs, GenericToStringServiceImpl.cs, 
RemoteClientActivatedTestCase.cs, RemoteComponentTestCase.cs, 
RemoteComponentWithInterceptorTestCase.cs, RemoteGenericComponentTestCase.cs, 
RemoteRecoverableCpntTestCase.cs, RemoteSingletonTestCase.cs, 
ServerClientContainerTestCase.cs
 /InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/TypedFactory/
  ExternalConfigurationTestCase.cs

Log:
 Applied patch from Simon Cropp for IOC-ISSUE-187 - fix for broken SL unit tests

File Changes:

Directory: /InversionOfControl/trunk/src/Castle.Windsor.Tests/
==============================================================

File [modified]: Castle.Windsor.Tests-vs2008-SL.csproj
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/ConfigHelper.cs
    2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/ConfigHelper.cs
    2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.EventWiring.Tests
 {
        using System.Configuration;
@@ -27,3 +28,4 @@
                }
        }
 }

Directory: 
/InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/
=====================================================================================

File [modified]: ConfigHelper.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/InvalidConfigTestCase.cs
   2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/InvalidConfigTestCase.cs
   2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.EventWiring.Tests
 {
        using Castle.Windsor;
@@ -35,3 +36,4 @@
                }
        }
 }

File [modified]: InvalidConfigTestCase.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/SingletonComponentsTestCase.cs
     2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/SingletonComponentsTestCase.cs
     2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.EventWiring.Tests
 {
        using System;
@@ -82,3 +83,4 @@
                }
        }
 }

File [modified]: SingletonComponentsTestCase.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/SingletonStartableTestCase.cs
      2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/SingletonStartableTestCase.cs
      2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.EventWiring.Tests
 {
        using NUnit.Framework;
@@ -25,3 +26,4 @@
                }
        }
 }

File [modified]: SingletonStartableTestCase.cs
Delta lines: +3 -1
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/SubscriberWithDependenciesTestCase.cs
      2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/SubscriberWithDependenciesTestCase.cs
      2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.EventWiring.Tests
 {
        using System;
@@ -49,4 +50,5 @@
                        Assert.IsNotNull(listener);
                }
        }
-}
\ No newline at end of file
+}
+#endif

File [modified]: SubscriberWithDependenciesTestCase.cs
Delta lines: +2 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/WiringTestBase.cs
  2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/EventWiring/WiringTestBase.cs
  2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.EventWiring.Tests
 {
        using Castle.Facilities.EventWiring.Tests.Model;
@@ -61,3 +62,5 @@
                }
        }
 }
+

File [modified]: WiringTestBase.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/AbstractRemoteTestCase.cs
     2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/AbstractRemoteTestCase.cs
     2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -103,3 +104,4 @@
                }
        }
 }

Directory: 
/InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/
==================================================================================

File [modified]: AbstractRemoteTestCase.cs
Delta lines: +2 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/AppDomainFactory.cs
   2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/AppDomainFactory.cs
   2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
+
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -37,3 +39,4 @@
                }
        }
 }

File [modified]: AppDomainFactory.cs
Delta lines: +7 -13
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/CalcServiceImpl.cs
    2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/CalcServiceImpl.cs
    2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,26 +12,20 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+
 namespace Castle.Facilities.Remoting.TestComponents
 {
+       using System.Linq;
        using System;
-
+#if (SILVERLIGHT)
+       public class CalcServiceImpl : ICalcService
+#else
        public class CalcServiceImpl : MarshalByRefObject, ICalcService
+#endif
        {
-               public CalcServiceImpl()
-               {
-               }
-
                public int Sum(params int[] args)
                {
-                       int sum = 0;
-
-                       foreach(int arg in args)
-                       {
-                               sum += arg;
-                       }
-
-                       return sum;
+                       return args.Sum();
                }
        }

File [modified]: CalcServiceImpl.cs
Delta lines: +2 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/ChangeResultInterceptor.cs
    2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/ChangeResultInterceptor.cs
    2009-12-22 06:08:03 UTC (rev 6519)
@@ -17,7 +17,9 @@
        using System;
        using Castle.Core.Interceptor;
 
+#if(!SILVERLIGHT)
        [Serializable]
+#endif
        public class ChangeResultInterceptor : IInterceptor
        {

File [modified]: ChangeResultInterceptor.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/ConfigHelper.cs
       2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/ConfigHelper.cs
       2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System.Configuration;
@@ -37,3 +38,4 @@
                }
        }
 }

File [modified]: ConfigHelper.cs
Delta lines: +7 -4
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/ConfigurableRegistrationTestCase.cs
   2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/ConfigurableRegistrationTestCase.cs
   2009-12-22 06:08:03 UTC (rev 6519)
@@ -1,10 +1,13 @@
-using System;
-using Castle.Facilities.Remoting.TestComponents;
-using Castle.Windsor;
-using NUnit.Framework;
 
+
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
+       using System;
+       using Castle.Facilities.Remoting.TestComponents;
+       using Castle.Windsor;
+       using NUnit.Framework;
+
        [TestFixture, Serializable]
        public class ConfigurableRegistrationTestCase : AbstractRemoteTestCase
        {
@@ -27,3 +30,4 @@
                }
        }
 }

File [modified]: ConfigurableRegistrationTestCase.cs
Delta lines: +4 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/CustomToStringService.cs
      2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/CustomToStringService.cs
      2009-12-22 06:08:03 UTC (rev 6519)
@@ -17,7 +17,11 @@
        using System;
        using System.Text;
 
+#if (SILVERLIGHT)
+       public class CustomToStringService : 
IGenericToStringService<StringBuilder>
+#else
        public class CustomToStringService : MarshalByRefObject, 
IGenericToStringService<StringBuilder>
+#endif
        {
                public string ToString(params StringBuilder[] instances)

File [modified]: CustomToStringService.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/FacilityLifeCycleTestCase.cs
  2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/FacilityLifeCycleTestCase.cs
  2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -38,3 +39,4 @@
                }
        }
 }

File [modified]: FacilityLifeCycleTestCase.cs
Delta lines: +4 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/GenericToStringServiceImpl.cs
 2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/GenericToStringServiceImpl.cs
 2009-12-22 06:08:03 UTC (rev 6519)
@@ -17,7 +17,11 @@
        using System;
        using System.Text;
 
+#if (SILVERLIGHT)
+       public class GenericToStringServiceImpl<T> : IGenericToStringService<T> 
where T : class
+#else
        public class GenericToStringServiceImpl<T> : MarshalByRefObject, 
IGenericToStringService<T> where T : class
+#endif
        {
                public string ToString(params T[] instances)

File [modified]: GenericToStringServiceImpl.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteClientActivatedTestCase.cs
      2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteClientActivatedTestCase.cs
      2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -70,3 +71,4 @@
                }
        }
 }

File [modified]: RemoteClientActivatedTestCase.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteComponentTestCase.cs
    2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteComponentTestCase.cs
    2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -50,3 +51,4 @@
                }
        }
 }

File [modified]: RemoteComponentTestCase.cs
Delta lines: +1 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteComponentWithInterceptorTestCase.cs
     2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteComponentWithInterceptorTestCase.cs
     2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -47,3 +48,4 @@
                }
        }
 }

File [modified]: RemoteComponentWithInterceptorTestCase.cs
Delta lines: +2 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteGenericComponentTestCase.cs
     2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteGenericComponentTestCase.cs
     2009-12-22 06:08:03 UTC (rev 6519)
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 
+#if(!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -86,3 +87,5 @@
         }
        }
 }
+

File [modified]: RemoteGenericComponentTestCase.cs
Delta lines: +2 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteRecoverableCpntTestCase.cs
      2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteRecoverableCpntTestCase.cs
      2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -67,3 +68,5 @@
                }
        }
 }
+

File [modified]: RemoteRecoverableCpntTestCase.cs
Delta lines: +2 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteSingletonTestCase.cs
    2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/RemoteSingletonTestCase.cs
    2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if(!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -86,3 +87,5 @@
                }
        }
 }
+

File [modified]: RemoteSingletonTestCase.cs
Delta lines: +4 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/ServerClientContainerTestCase.cs
      2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/Remoting/ServerClientContainerTestCase.cs
      2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
 namespace Castle.Facilities.Remoting.Tests
 {
        using System;
@@ -87,3 +88,7 @@
                }
        }
 }
+
+
+

File [modified]: ServerClientContainerTestCase.cs
Delta lines: +2 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/TypedFactory/ExternalConfigurationTestCase.cs
  2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/TypedFactory/ExternalConfigurationTestCase.cs
  2009-12-22 06:08:03 UTC (rev 6519)
@@ -12,6 +12,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#if (!SILVERLIGHT)
+
 namespace Castle.Facilities.TypedFactory.Tests
 {
        using System;
@@ -114,3 +116,4 @@
                }
        }
 }

Directory: /InversionOfControl/trunk/src/Castle.MicroKernel/SubSystems/
=======================================================================

File [modified]: AbstractSubSystem.cs
Delta lines: +74 -0
===================================================================

--- 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Castle.Windsor.Tests-vs2008-SL.csproj
     2009-12-21 23:10:24 UTC (rev 6518)
+++ 
InversionOfControl/trunk/src/Castle.Windsor.Tests/Castle.Windsor.Tests-vs2008-SL.csproj
     2009-12-22 06:08:03 UTC (rev 6519)
@@ -98,6 +98,7 @@
     <Compile Include="Components\Reviewer.cs" />
     <Compile Include="Components\Robot.cs" />
     <Compile Include="Components\SimpleMixIn.cs" />
+    <Compile Include="ConfigHelper.cs" />
     <Compile Include="Configuration2\ConfigurationEnvTestCase.cs" />
     <Compile Include="Configuration2\ConfigurationForwardedTypesTestCase.cs" />
     <Compile Include="Configuration2\ConfigWithStatementsTestCase.cs" />
@@ -107,10 +108,59 @@
     <Compile Include="Configuration2\SynchronizationProblemTestCase.cs" />
     <Compile Include="Configuration\AppDomainConfigurationStoreTestCase.cs" />
     <Compile Include="Configuration\ConfigXmlInterpreterTestCase.cs" />
+    <Compile Include="ConfigureDecoratorsTestCase.cs" />
     <Compile Include="ContainerProblem.cs" />
     <Compile Include="ContainerProblem2.cs" />
     <Compile Include="DependencyProblem.cs" />
+    <Compile Include="Facilities\EventWiring\ConfigHelper.cs" />
+    <Compile Include="Facilities\EventWiring\InvalidConfigTestCase.cs" />
+    <Compile Include="Facilities\EventWiring\Model\GenericService.cs" />
+    <Compile Include="Facilities\EventWiring\Model\Handlers.cs" />
+    <Compile Include="Facilities\EventWiring\Model\MultiListener.cs" />
+    <Compile Include="Facilities\EventWiring\Model\MultiPublisher.cs" />
+    <Compile Include="Facilities\EventWiring\Model\MyInterceptor.cs" />
+    <Compile Include="Facilities\EventWiring\Model\PublisherListener.cs" />
+    <Compile Include="Facilities\EventWiring\Model\SimpleListener.cs" />
+    <Compile Include="Facilities\EventWiring\Model\SimplePublisher.cs" />
+    <Compile Include="Facilities\EventWiring\Model\SimpleService.cs" />
+    <Compile 
Include="Facilities\EventWiring\Model\SubscriberWithDependency.cs" />
+    <Compile 
Include="Facilities\EventWiring\Model\SubscriberWithGenericDependency.cs" />
+    <Compile Include="Facilities\EventWiring\ProxiedSubscriberTestCase.cs" />
+    <Compile Include="Facilities\EventWiring\SingletonComponentsTestCase.cs" />
+    <Compile Include="Facilities\EventWiring\SingletonStartableTestCase.cs" />
+    <Compile 
Include="Facilities\EventWiring\SubscriberWithDependenciesTestCase.cs" />
+    <Compile Include="Facilities\EventWiring\WiringTestBase.cs" />
+    <Compile Include="Facilities\Remoting\AbstractRemoteTestCase.cs" />
+    <Compile Include="Facilities\Remoting\AppDomainFactory.cs" />
+    <Compile Include="Facilities\Remoting\CalcServiceImpl.cs" />
+    <Compile Include="Facilities\Remoting\ChangeResultInterceptor.cs" />
+    <Compile Include="Facilities\Remoting\ConfigHelper.cs" />
+    <Compile Include="Facilities\Remoting\ConfigurableRegistrationTestCase.cs" 
/>
+    <Compile Include="Facilities\Remoting\ConsumerComp.cs" />
+    <Compile Include="Facilities\Remoting\CustomToStringService.cs" />
+    <Compile Include="Facilities\Remoting\FacilityLifeCycleTestCase.cs" />
+    <Compile Include="Facilities\Remoting\GenericToStringServiceImpl.cs" />
+    <Compile Include="Facilities\Remoting\ICalcService.cs" />
+    <Compile Include="Facilities\Remoting\IGenericHashService.cs" />
+    <Compile Include="Facilities\Remoting\InterceptableCalcService.cs" />
+    <Compile Include="Facilities\Remoting\RemoteClientActivatedTestCase.cs" />
+    <Compile Include="Facilities\Remoting\RemoteComponentTestCase.cs" />
+    <Compile 
Include="Facilities\Remoting\RemoteComponentWithInterceptorTestCase.cs" />
+    <Compile Include="Facilities\Remoting\RemoteGenericComponentTestCase.cs" />
+    <Compile Include="Facilities\Remoting\RemoteRecoverableCpntTestCase.cs" />
+    <Compile Include="Facilities\Remoting\RemoteSingletonTestCase.cs" />
+    <Compile Include="Facilities\Remoting\ServerClientContainerTestCase.cs" />
     <Compile Include="Facilities\SlowlyInitFacility.cs" />
+    <Compile Include="Facilities\TypedFactory\Components\Component1.cs" />
+    <Compile Include="Facilities\TypedFactory\Components\Component2.cs" />
+    <Compile Include="Facilities\TypedFactory\Components\IDummyComponent.cs" />
+    <Compile Include="Facilities\TypedFactory\Components\IProtocolHandler.cs" 
/>
+    <Compile 
Include="Facilities\TypedFactory\Components\MessengerProtocolHandler.cs" />
+    <Compile 
Include="Facilities\TypedFactory\Components\MirandaProtocolHandler.cs" />
+    <Compile 
Include="Facilities\TypedFactory\ExternalConfigurationTestCase.cs" />
+    <Compile Include="Facilities\TypedFactory\Factories\IComponentFactory.cs" 
/>
+    <Compile 
Include="Facilities\TypedFactory\Factories\IProtocolHandlerFactory.cs" />
+    <Compile Include="Facilities\TypedFactory\TypedFactoryTestCase.cs" />
     <Compile Include="HandlerSelectorsTestCase.cs" />
     <Compile Include="IgnoreWireTestCase.cs" />
     <Compile Include="Installer\ConfigurationInstallerTestCase.cs" />
@@ -169,6 +219,22 @@
     <Content Include="DotNet2Config\GenericsConfig.xml" />
     <Content Include="DotNet2Config\MissingDecoratorConfig.xml" />
     <Content Include="DotNet2Config\RecursiveDecoratorConfig.xml" />
+    <Content 
Include="Facilities\Remoting\Configs\client_12134_kernelcomponent.xml" />
+    <Content Include="Facilities\Remoting\Configs\client_clientactivated.xml" 
/>
+    <Content 
Include="Facilities\Remoting\Configs\client_confreg_clientactivated.xml" />
+    <Content Include="Facilities\Remoting\Configs\client_kernelcomponent.xml" 
/>
+    <Content 
Include="Facilities\Remoting\Configs\client_kernelcomponent_recover.xml" />
+    <Content 
Include="Facilities\Remoting\Configs\client_kernelgenericcomponent.xml" />
+    <Content Include="Facilities\Remoting\Configs\client_simple_scenario.xml" 
/>
+    <Content Include="Facilities\Remoting\Configs\server_clientactivated.xml" 
/>
+    <Content 
Include="Facilities\Remoting\Configs\server_client_kernelcomponent.xml" />
+    <Content 
Include="Facilities\Remoting\Configs\server_confreg_clientactivated.xml" />
+    <Content Include="Facilities\Remoting\Configs\server_kernelcomponent.xml" 
/>
+    <Content 
Include="Facilities\Remoting\Configs\server_kernelcomponent_inter1.xml" />
+    <Content 
Include="Facilities\Remoting\Configs\server_kernelcomponent_recover.xml" />
+    <Content 
Include="Facilities\Remoting\Configs\server_kernelgenericcomponent.xml" />
+    <Content Include="Facilities\Remoting\Configs\server_simple_scenario.xml" 
/>
+    <Content Include="Facilities\TypedFactory\typedFactory_castle_config.xml" 
/>
     <Content Include="Proxy\proxyBehavior.xml" />
     <Content Include="Proxy\proxyBehaviorInvalidConfig.xml" />
     <Content Include="Proxy\typedFactory.xml" />
@@ -232,6 +298,14 @@
   <ItemGroup>
     <None Include="DotNet2Config\chainOfRespnsability.config" />
     <None Include="DotNet2Config\chainOfRespnsability_smart.config" />
+    <None Include="Facilities\EventWiring\App.config" />
+    <None Include="Facilities\EventWiring\Config\dependencies.config" />
+    <None Include="Facilities\EventWiring\Config\invalid.config" />
+    <None Include="Facilities\EventWiring\Config\singleton.config" />
+    <None Include="Facilities\EventWiring\Config\startable.config" />
+    <None Include="Facilities\Remoting\Configs\RemotingTcpConfig.config" />
+    <None Include="Facilities\Remoting\Configs\RemotingTcpConfig2.config" />
+    <None Include="Facilities\Remoting\Configs\RemotingTcpConfigClient.config" 
/>
   </ItemGroup>
   <ItemGroup>

Directory: 
/InversionOfControl/trunk/src/Castle.Windsor.Tests/Facilities/TypedFactory/
======================================================================================

File [modified]: ExternalConfigurationTestCase.cs
Delta lines: +0 -0
===================================================================

--

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.


Reply via email to