ExpressiveReflection 2.0.1

dotnet add package ExpressiveReflection --version 2.0.1
NuGet\Install-Package ExpressiveReflection -Version 2.0.1
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="ExpressiveReflection" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExpressiveReflection --version 2.0.1
#r "nuget: ExpressiveReflection, 2.0.1"
#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 ExpressiveReflection as a Cake Addin
#addin nuget:?package=ExpressiveReflection&version=2.0.1

// Install ExpressiveReflection as a Cake Tool
#tool nuget:?package=ExpressiveReflection&version=2.0.1

Tools to simplify coding with the .NET reflection APIs.

Product 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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on ExpressiveReflection:

Package Downloads
ExpressiveAssertions

Flexible assertion library leveraging the .NET expression tree syntax

ExpressiveExpressionTrees

This is a source only distribution of the ExpressiveExpressionTrees library that can be embedded inside of other projects / libraries.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.1 1,179 1/8/2018
2.0.0 5,962 9/28/2017
1.4.1 1,000 3/25/2017
1.4.0 948 1/31/2017
1.3.3 939 1/30/2017
1.3.2 983 1/19/2017
1.3.1 973 1/19/2017
1.3.0 1,021 1/14/2017
1.2.7 992 12/29/2016
1.2.6 1,028 3/10/2016
1.2.5 1,064 2/2/2016
1.2.4 1,033 2/2/2016
1.2.3 1,022 1/30/2016
1.2.2 1,043 1/30/2016
1.2.1 1,047 1/29/2016
1.2.0 1,256 1/28/2016
1.1.0 1,347 10/29/2015
1.0.1 1,295 10/23/2015
1.0.0 1,267 10/23/2015

* 2.0.1 - Experimented with getting the source only distribution working, it turns out the source transformation feature and nuget content in general just isn't available with dotnet core, and so the source distribution is gone until further notice.
* 2.0.0 - Updated library, releases are now targeting .NET core 2
* 1.4.1 - Fix for issue with calls to Reflection.IsNullAssignable() and extension method <Type>.IsNullAssignable() calling the wrong function in TypeReflection.
* 1.4.0 - Hit some need for looking up a generic method, and only have a Type[] available to use to do it. Found a solution on stackoverflow that works, and doesn't require intense mental effort to use. I would like something cleaner down the road but it will do for now: GetMethodExt()
* 1.3.3 - Fix issues with Transmute(), where two separate members defined on the same type have the same metadata toekn, because the two members are declared in different modules and by chance they happened to overlap
* 1.3.2 - Implemented a MemberReflection.Transmute() method to complement the other Transmute() offerings
* 1.3.2 - rewrite constructorReflection.Transmute() to use same MetadataToken trick that the MethodReflection.Transmtue() relies on
* 1.3.1 - Fix for bug in MethodReflection.Transmute() leading to completely random method derivations being returned
* 1.3.1 - Fix for bug in ConstructorReflection.Transmute() leading to no transmute operation taking place
* 1.3.0 - added Transmute() methods for Constructors / Methods / Types allowing quick change of generic type arguments
* 1.3.0 - added a few new overloads to MethodReflection.From() to allow support for methods returning void
* 1.2.7 - added collection reflection with helpers for coercing a type to / from IEnumerable
* 1.2.6 - apparently the binary nuget package didn't have a dll in it
* 1.2.5 - fixing an issue with the comments produced in source distribution
* 1.2.4 - after hitting some issues with filesystem path length limitations renaming the folder the Sources package installs to in the hopes of minimizing the filename slizes
* 1.2.3 - last attempt at packaging didn't work right when multiple projcets included the same package in the solution so rewrote it again to use .pp transformations
* 1.2.2 - this is a large scale rewrite of the Sources distrbution, making this Sources package safer for use, however no new functionality was added otherwise
* 1.2.1 - bumping the version to fix some minor things in the soruce package
* 1.2.0 - added getValue(MemberInfo) / setValue(MemberInfo) methods to MemberReflection
* 1.2.0 - add ExpressiveReflection.Extensions namespace and exposed most functionality as extension methods on their corresponding types