FeralExpressions.Generator 1.0.3

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

// Install FeralExpressions.Generator as a Cake Tool
#tool nuget:?package=FeralExpressions.Generator&version=1.0.3

This project supplies compile time support for FeralExpressions.
For every.cs file which contains a partial class with one or more expression bodied method, it creates an equivalent of that
method which has the same logic, but is a static Expression property.
For example,
public static string Test(string arg1) => ""abc"" + arg1;
would produce
public static Expression<Func<string,string>> Test_Expression => (string arg1) => ""abc"" + arg1;

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FeralExpressions.Generator:

Package Downloads
FeralExpressions

FeralExpressions defines the expansion method .Inline() which can be called on either an expression, or an IQueryable. It replaces method calls in the expression with the method body. In order for this to work, the method must (a) be declared in a partial class (b) have an expression body (c) have any references to this explicitly written

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0-alpha 1,210 2/2/2018
1.1.2-alpha 1,065 2/1/2018
1.1.1-alpha.1 701 2/1/2018
1.1.1-alpha 962 2/1/2018
1.1.0-alpha 1,204 1/30/2018
1.0.3 1,204 1/7/2018
1.0.2 1,154 1/7/2018
1.0.1 1,560 7/27/2017
1.0.0 1,180 7/27/2017
0.0.1-alpha 954 7/25/2017

- Resolved an issue with recursively inlining
- Added support for extension methods