User: xtoff
Date: 2009/11/13 10:58 AM

Modified:
 /DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/
  InvocationMethodInvocationTargetTestCase.cs
 /DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/GenClasses/
  GenClassWithExplicitImpl.cs

Log:
 - fixed silverlight build, by removing API that does not exist in SL

File Changes:

Directory: /DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/
=============================================================

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

Directory: /DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/GenClasses/
========================================================================

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

--- 
DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/InvocationMethodInvocationTargetTestCase.cs
        2009-11-13 17:13:55 UTC (rev 6322)
+++ 
DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/InvocationMethodInvocationTargetTestCase.cs
        2009-11-13 17:58:04 UTC (rev 6323)
@@ -14,8 +14,8 @@
 
 namespace Castle.DynamicProxy.Tests
 {
-       using System.ComponentModel;
        using System.Reflection;
+
        using Castle.DynamicProxy.Tests.Classes;
        using Castle.DynamicProxy.Tests.GenClasses;
        using Castle.DynamicProxy.Tests.Interceptors;
@@ -101,7 +101,7 @@
                public void 
ClassProxyForGeneric_MethodInvocationTarget_should_be_proxyMethod()
                {
                        var interceptor = new KeepDataInterceptor();
-                       var proxy = 
(IChangeTracking)generator.CreateClassProxy<GenClassWithExplicitImpl<int>>(interceptor);
+                       var proxy = 
(Castle.DynamicProxy.Tests.GenClasses.IChangeTracking)generator.CreateClassProxy<GenClassWithExplicitImpl<int>>(interceptor);
                        Assert.IsTrue(proxy.IsChanged);
                        
Assert.IsNotNull(interceptor.Invocation.MethodInvocationTarget);

--

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=.


Reply via email to