Mike Stall
Mike Stall
I want to be able to open a writable Stream and not worry about chunking operations. The stream's Write() method would chunk as needed. A caller can wrap it in...
This was a followup from https://github.com/Azure/azure-webjobs-sdk/issues/1169 We allow DataAnnotation attributes on binding attributes, consider allowing them on POCOs too. We JSON deserialize our pocos, so this may be a JSON.Net...
Allow TimerTrigger to specify the timezone. This is particularly important when we need a time in the local timezone, and setting WEBSITE_TIME_ZONE (a global setting) is a heavy hammer to...
This is currently using an old prerelease build of Power Fx (https://github.com/microsoft/Power-Fx) . It's using `0.2.1-preview` here: https://github.com/UiPath/CoreWF/blob/bd195693d8eec23d246158382c617663a93f00fe/src/UiPath.Workflow/UiPath.Workflow.csproj#L26 GA builds are available (https://www.nuget.org/packages/Microsoft.PowerFx.Core) . Can you update to a GA...
The basic problem is that we load the entire msapp into memory (CanvasDocument). And then oom at places like this: ``` case FileKind.AppCheckerResult: var appChecker = Encoding.UTF8.GetString(entry.ToBytes()); app._entropy.AppCheckerResult = appChecker;...
Add more guards against threading misuse and races. No functional changes.
See #2343
Add 2 new functions that work with files (https://github.com/microsoft/Power-Fx/blob/main/src/libraries/Microsoft.PowerFx.Core/Public/Values/BlobValue.cs) These don't need to be included by default yet. But can be pulled in via: `Config.EnableFileFunctions()` # FileInfo New function, called...
FormulaType.Build maps OptionSet --> RecordType. This loses the OS type information. https://github.com/microsoft/Power-Fx/blob/4b650d96dd12229edba82cbc1976d71be4791e8b/src/libraries/Microsoft.PowerFx.Core/Public/Types/FormulaType.cs#L170 It should treat as an option set. Related - builtin enums (like Color) get treated as an unsupported...
We should continue publishing daily nugets to a public feed. https://dev.azure.com/Power-Fx/Power%20Fx/_artifacts/feed/PowerFx/NuGet/Microsoft.PowerFx.Core We disabled this due to some devops issues, but should re-enable.