ProxyFoo 0.2.2

dotnet add package ProxyFoo --version 0.2.2
NuGet\Install-Package ProxyFoo -Version 0.2.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ProxyFoo" Version="0.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ProxyFoo --version 0.2.2
#r "nuget: ProxyFoo, 0.2.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ProxyFoo as a Cake Addin
#addin nuget:?package=ProxyFoo&version=0.2.2

// Install ProxyFoo as a Cake Tool
#tool nuget:?package=ProxyFoo&version=0.2.2

ProxyFoo is a library for the .NET Framework to facilitate creating high-performance proxies for Duck casting, null safe wrappers, and other uses

Product Compatible and additional computed target framework versions.
.NET Framework net40-client is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.2 205 4/22/2014
0.2.1 46 3/14/2014
0.2.0 47 3/13/2014
0.1.0 61 2/28/2014

v0.2.2:
- Safe proxies test for method exists on duck proxies (or any real subject that supports it via IMethodExistsProxyMeta)
- Safe proxies will be created for any type: any value type can be returned and concrete classes return null (can't proxy them, but you can always duck them to an interface then safe proxy the duck)
- Fix threading issue for method exists
v0.2.1:
- Fix peverify fails if members are repeated in multiple subject interfaces.
- Fix proxy member generation for property indexers.
v0.2.0:
- Add support for out/ref parameters and recursive type definitions.