ExpressionToCodeLib 1.4.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package ExpressionToCodeLib --version 1.4.2
NuGet\Install-Package ExpressionToCodeLib -Version 1.4.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="ExpressionToCodeLib" Version="1.4.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExpressionToCodeLib --version 1.4.2
#r "nuget: ExpressionToCodeLib, 1.4.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 ExpressionToCodeLib as a Cake Addin
#addin nuget:?package=ExpressionToCodeLib&version=1.4.2

// Install ExpressionToCodeLib as a Cake Tool
#tool nuget:?package=ExpressionToCodeLib&version=1.4.2

Generates valid, readable C# from an Expression Tree, and can annotate that code with runtime values.  This can be useful for code generation and for unit testing: ExpressionToCode detects NUnit, xUnit.NET and MSTest and uses their assertions if available, and a normal Exception otherwise (so it runs fine outside those specific unit testing frameworks too).

ExpressionToCode was inspired by Power Asssert.NET. It differs from PowerAssert.NET by supporting a much larger portion of the lambda syntax and to respect C#'s normal operator precedence, in addition to general polish.

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
1.5.2 113 3/22/2015
1.5.1 41 3/10/2015
1.5.0 117 3/7/2015
1.4.8 161 1/21/2015
1.4.7 1 1/11/2015
1.4.6 159 8/30/2014
1.4.5 144 5/29/2014
1.4.4 276 4/9/2013
1.4.3 90 4/5/2013
1.4.2 78 3/29/2013
1.4.1 96 3/26/2013
1.4.0 109 3/12/2013
1.3.0 88 3/11/2013
1.2.0 97 3/8/2013
1.1.0.1 51 3/7/2013
1.1.0 77 3/7/2013

Better result layout: include single-line messages after the PAssert.That expression (inline), and also avoid some clutter by not annotating the outermost expression value (which is always false or an exception which is the inner exception).