LinqRewrite.Core
1.1.6
See the version list below for details.
dotnet add package LinqRewrite.Core --version 1.1.6
NuGet\Install-Package LinqRewrite.Core -Version 1.1.6
<PackageReference Include="LinqRewrite.Core" Version="1.1.6" />
paket add LinqRewrite.Core --version 1.1.6
#r "nuget: LinqRewrite.Core, 1.1.6"
// Install LinqRewrite.Core as a Cake Addin #addin nuget:?package=LinqRewrite.Core&version=1.1.6 // Install LinqRewrite.Core as a Cake Tool #tool nuget:?package=LinqRewrite.Core&version=1.1.6
Improved version of roslyn-linq-rewrite (https://github.com/antiufo/roslyn-linq-rewrite). This tool rewrites LINQ queries in C# code using plain procedural code, minimizing allocations and dynamic dispatch, inlining lambdas, optimizing simple math expressions and using known information for optimization. It has two run modes. First to compile rewritten code into .dll or .exe, second to rewrite the code and save it into a specified folder. For proper behavior install NuGet package LinqRewrite.Core into project which you are rewriting. For basic queries which can be rewritten to simple expression (ArraySource.Select(x ⇒ x + 5).Last()) was speedup 50000x, for aggregations and simple changes of iteration was speedup several times and for queries over IEnumerable and with too few provided information was speedup up to 30% of System.Linq. There is no runtime overhead of compilation. For rewrite is needed to install NuGet package LinqRewrite.Core. Repository of rewriting program https://gitlab.nesad.fit.vutbr.cz/xseryd00/roslyn-linq-rewrite/.
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 | netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETCoreApp 2.1
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.6.2
- 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.
Version | Downloads | Last updated |
---|---|---|
1.3.0-preview | 816 | 10/27/2020 |
1.2.3 | 1,100 | 7/12/2020 |
1.2.2 | 937 | 7/12/2020 |
1.2.1 | 896 | 7/6/2020 |
1.2.0 | 963 | 7/6/2020 |
1.1.10 | 1,022 | 6/15/2020 |
1.1.9 | 943 | 6/15/2020 |
1.1.8 | 927 | 6/8/2020 |
1.1.7 | 938 | 6/8/2020 |
1.1.6 | 923 | 6/8/2020 |
1.1.0 | 999 | 5/25/2020 |
1.0.10 | 963 | 5/25/2020 |
1.0.9 | 1,012 | 5/25/2020 |
1.0.8 | 971 | 5/24/2020 |
1.0.7 | 945 | 5/24/2020 |
1.0.6 | 970 | 5/24/2020 |
1.0.5 | 1,018 | 5/24/2020 |
1.0.4 | 915 | 5/24/2020 |
1.0.1 | 956 | 5/12/2020 |
0.6.6-preview | 819 | 5/10/2020 |
0.6.5-preview | 790 | 5/8/2020 |
0.6.2-preview | 819 | 4/20/2020 |
0.6.1-preview | 855 | 4/10/2020 |
0.6.0-preview | 825 | 4/10/2020 |
0.5.9-preview | 792 | 4/9/2020 |
0.5.8-preview | 823 | 4/6/2020 |
0.5.7-preview | 835 | 4/6/2020 |
0.5.6-preview | 802 | 3/23/2020 |
0.5.5-preview | 797 | 3/22/2020 |
Using inner Array.Copy due to bug of inner ArrayCopy