gmkado
gmkado
> I also noticed that when these items were included, switching between images in the bottom bar was very slow. Hmm disregard this comment. I added the embedded items back...
@henon any update on this? This was pretty surprising behavior for us trying to get custom converters working.
Any progress on this? Would be awesome, especially when using with this new vscode feature https://code.visualstudio.com/updates/v1_77#_copy-github-deep-links-from-editor-gutter
I traced this back to around this area: https://github.com/igor-krechetov/hsmcpp/blob/91b791de43c263a9ce2025267506e9c41ddba555/src/HsmImpl.cpp#L1235-L1239 So looks like when we enter a history state, it pushes "forced" transition events for each transition to get back to...
So spent some more time digging into this and didn't realize that the freertos part of this library isn't included in the platformio library, so the compiler gets confused on...
One more observation here, the blink example didn't work because this line was evaluating to false https://github.com/igor-krechetov/hsmcpp/blob/91b791de43c263a9ce2025267506e9c41ddba555/src/HsmEventDispatcherArduino.cpp#L108 Changing it to ```cpp if (handleTimerEvent(it->first)) { ``` made it start working for...
FWIW I reproduced on the `Nuget.Versioning` example that is linked in the [microsoft docs](https://learn.microsoft.com/en-us/nuget/consume-packages/package-references-in-project-files#packagereference-aliases):  Their [example ](https://github.com/NuGet/Samples/blob/ec30a2b7c54c2d09e5a476444a2c7a8f2f289d49/PackageReferenceAliasesExample/PackageReferenceAliasesExample.csproj#L9) only has one alias, but if you add a second one it...
This seems to give the desired behavior for me: ```cs var context = new ExpressionContext { StaticParameters ={ ["a"] = 1, ["b"] = 2 }, DynamicParameters = { ["c"] =...
@emayevski I think the issue is that sub-expressions don't have their contexts "cleared" before adding the parent expression's context (see the link in the issue description). The cause of the...
Thanks @gumbarros for looking into this. Is that equivalent to my usage of DynamicParameters in https://github.com/ncalc/ncalc/issues/387#issuecomment-2634985328?