You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Public default ctor for ParserOptions was wrongfully removed in #1292.
(see #1292 (comment). )
This is a breaking change and is causing other dlls to now throw:
System.MissingMethodException: 'Method not found: 'Void Microsoft.PowerFx.ParserOptions..ctor()'.'
According to the .net loader:
A default ctor means no parameters.
Whereas a default parameter is a compiler-level construct (the compiler will insert the default value at the callsite), but it's still a regular parameter for .net loader.
Public default ctor for ParserOptions was wrongfully removed in #1292.
(see #1292 (comment). )
This is a breaking change and is causing other dlls to now throw:
System.MissingMethodException: 'Method not found: 'Void Microsoft.PowerFx.ParserOptions..ctor()'.'
According to the .net loader:
At least one occurence:
The text was updated successfully, but these errors were encountered: