GreyhamWooHoo.Interceptor.Core
1.1.4
dotnet add package GreyhamWooHoo.Interceptor.Core --version 1.1.4
NuGet\Install-Package GreyhamWooHoo.Interceptor.Core -Version 1.1.4
<PackageReference Include="GreyhamWooHoo.Interceptor.Core" Version="1.1.4" />
paket add GreyhamWooHoo.Interceptor.Core --version 1.1.4
#r "nuget: GreyhamWooHoo.Interceptor.Core, 1.1.4"
// Install GreyhamWooHoo.Interceptor.Core as a Cake Addin #addin nuget:?package=GreyhamWooHoo.Interceptor.Core&version=1.1.4 // Install GreyhamWooHoo.Interceptor.Core as a Cake Tool #tool nuget:?package=GreyhamWooHoo.Interceptor.Core&version=1.1.4
Intercept calls to an interface before or after the concrete implementation is invoked.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1.1.4
- Fixed a bug where OnAfter would be called for all After rules, not just the matching one
1.1.3
- Stub and OnAfter include parameters and arguments for the method call
- Improved internal code relating to stubbing void methods
1.1.2
- Support for multiple Before and multiple After callouts
1.1.1
- Adding support for method / return value interrogators
- Consolidated the async, Void and Task implementations (wrong assumptions/knowledge gap on my part)
- Tests consolidated / renamed
- Breaking Changes:
1. Prior implementation: non-generic Tasks were always assumed to be void (HasReturnValue=false on callout)
2. 1.1.1 Implementation: non-generic Tasks will interpret the .Result and callout with the correct result
1.0.9:
- Adding async void methods, extra tests
- Includes generic and non-generic builder interfaces (backwards compatible)
1.0.8:
- Adding support for async tasks / methods
1.0.7:
- Initial release.