-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathFastExpressionCompiler.LightExpression.Internal.src.nuspec
101 lines (78 loc) · 5.46 KB
/
FastExpressionCompiler.LightExpression.Internal.src.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="3.3.0">
<id>FastExpressionCompiler.LightExpression.Internal.src</id>
<version>5.1.0</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2025 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<icon>logo.png</icon>
<description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</description>
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<releaseNotes><![CDATA[
## v5.1.0 Small feature release
- add: #458 Add Support for TryFault
- fix: #460 ArgumentException when converting from object to type with explicit operator
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.0.3...v5.1.0
## v5.0.3 Bug-fix release
- fix: #451 Operator implicit/explicit produces InvalidProgram
- fix: #455 TypeAs should return null when it cannot cast to a nullable #455
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.0.2...v5.0.3
## v5.0.2 Bug-fix release
-fix: #449 MemberInit produces InvalidProgram
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.0.1...v5.0.2
## v5.0.1 Bug-fix release
- fix: #437 Shared variables with nested lambdas returning incorrect values
- fix: #439 Support unused Field access in Block
- fix: #440 Errors with simplified Switch cases
- fix: #441 Fails to pass Constant as call parameter by-reference
- fix: #442 TryCatch and the Goto outside problems
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
## v5.0.0 Major feature release
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression
- feat: #432 Add explicit target for .NET 9
- feat: #434 ToCSharpString should generate stable names for the unnamed variables, parameters and labels
- fix: #262 Optimize OpCode.Ceq plus Branch into a single compare-and-branch
- fix: #424 TryCatch expression as argument in Call expression produces invalid program
- fix: #426 Directly passing a method result to another method by ref, fails with InvalidProgramException
- fix: #427 CSharp output with more consistency, robustness and more understandable code
- fix: #428 Expression.Switch without a default case incorrectly calls first case for unmatched values
- fix: #430 TryCatch - Bad label content in ILGenerator
]]> </releaseNotes>
<contentFiles>
<files include="cs/**/*.*" buildAction="Compile" />
</contentFiles>
<dependencies>
<group targetFramework="net8.0"/>
<group targetFramework="net472">
<dependency id="System.ValueTuple" version="4.5.0" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="System.Dynamic.Runtime" version="4.3.0" />
<dependency id="System.Reflection.Emit.Lightweight" version="4.7.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="..\LICENSE" />
<file src="..\logo.png" />
<file src="..\FastExpressionCompiler.snk" />
<file src="_._" target="lib\net8.0\" />
<file src="_._" target="lib\net472\" />
<file src="_._" target="lib\netstandard2.0\" />
<file src="..\src\FastExpressionCompiler.Internal\FastExpressionCompiler.cs" target="contentFiles\cs\net472\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\ImTools.cs" target="contentFiles\cs\net472\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\Expression.cs" target="contentFiles\cs\net472\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\ExpressionVisitor.cs" target="contentFiles\cs\net472\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\FastExpressionCompiler.cs" target="contentFiles\cs\netstandard2.0\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\ImTools.cs" target="contentFiles\cs\netstandard2.0\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\Expression.cs" target="contentFiles\cs\netstandard2.0\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\ExpressionVisitor.cs" target="contentFiles\cs\netstandard2.0\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\FastExpressionCompiler.cs" target="contentFiles\cs\net8.0\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\ImTools.cs" target="contentFiles\cs\net8.0\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\Expression.cs" target="contentFiles\cs\net8.0\FastExpressionCompiler.LightExpression" />
<file src="..\src\FastExpressionCompiler.Internal\ExpressionVisitor.cs" target="contentFiles\cs\net8.0\FastExpressionCompiler.LightExpression" />
</files>
</package>