User: xtoff
Date: 2009/10/26 11:09 AM
Added:
/DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/Interfaces/
IFooWithIntPtr.cs
Modified:
/DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/
Castle.DynamicProxy.Tests-vs2008.csproj, RhinoMocksTestCase.cs
Log:
- moved IFooWithIntPtr out of RhinoMockTestCase so that it's visible in Mono
and Silverlight
File Changes:
Directory: /DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/
=============================================================
File [modified]: Castle.DynamicProxy.Tests-vs2008.csproj
Delta lines: +23 -0
===================================================================
---
DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/Interfaces/IFooWithIntPtr.cs
(rev 0)
+++
DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/Interfaces/IFooWithIntPtr.cs
2009-10-26 18:09:33 UTC (rev 6264)
@@ -0,0 +1,23 @@
+// Copyright 2004-2009 Castle Project - http://www.castleproject.org/
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+namespace Castle.DynamicProxy.Tests.Interfaces
+{
+ using System;
+
+ public interface IFooWithIntPtr
+ {
+ IntPtr Buffer(UInt32 index);
+ }
+}
File [modified]: RhinoMocksTestCase.cs
Delta lines: +0 -0
===================================================================
Directory: /DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/Interfaces/
========================================================================
File [added]: IFooWithIntPtr.cs
Delta lines: +1 -5
===================================================================
--- DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/RhinoMocksTestCase.cs
2009-10-26 17:58:23 UTC (rev 6263)
+++ DynamicProxy/trunk/src/Castle.DynamicProxy.Tests/RhinoMocksTestCase.cs
2009-10-26 18:09:33 UTC (rev 6264)
@@ -21,6 +21,7 @@
using System.Runtime.InteropServices;
using Castle.Core.Interceptor;
using Castle.DynamicProxy.Tests.Interceptors;
+ using Castle.DynamicProxy.Tests.Interfaces;
using NUnit.Framework;
using RhinoMocksCPPInterfaces;
@@ -340,11 +341,6 @@
T Create<T>() where T : List<T>;
}
- public interface IFooWithIntPtr
- {
- IntPtr Buffer(UInt32 index);
- }
-
public abstract class SomeClassWithProtectedInternalAbstractClass
{
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---