Skip to content

Commit c180f71

Browse files
oviradoiscott-xu
authored andcommitted
Update castle core (#51)
* Update Castle.Core nuget package * Add implementation for new method
1 parent 1f150c1 commit c180f71

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/Ninject.Extensions.Interception.DynamicProxy/Ninject.Extensions.Interception.DynamicProxy.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</ItemGroup>
3737

3838
<ItemGroup>
39-
<PackageReference Include="Castle.Core" Version="4.2.0" />
39+
<PackageReference Include="Castle.Core" Version="4.4.0" />
4040
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
4141
<PrivateAssets>All</PrivateAssets>
4242
</PackageReference>

src/Ninject.Extensions.Interception.DynamicProxy/ObjectMethodsInvocation.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,12 @@ public void Proceed()
129129
this.Method.Invoke(this.InvocationTarget, this.Arguments);
130130
}
131131

132+
/// <inheritdoc />
133+
public IInvocationProceedInfo CaptureProceedInfo()
134+
{
135+
throw new NotImplementedException();
136+
}
137+
132138
/// <summary>
133139
/// Sets the argument value.
134140
/// </summary>

0 commit comments

Comments
 (0)