Marcus Nilsson
Marcus Nilsson
Hi, Just found your nuget package and am trying to generate thumbnails of my Sony ARW (RAW) photos. The thumbnail stuff is working great, but I would also like to...
As discussed here (https://github.com/Microsoft/ApplicationInsights-dotnet/issues/407) the old synchronous `telemetryClient.Flush()` was not reliable since it wasn't really synchronous, but instead relied upon some variation of `Thread.Sleep(n)` afterwards. This is implemented with a...
When using a BlobTriggerAttribute on a C# method, it will when no new blobs appear for some time, eventually backoff and wait for 60000ms. Changing the setting `maxPollingInterval` (under extensions\queues)...
**Is your feature request related to a problem? Please describe.** We are trying to integrate with Cerners Millenium system using FHIR. Most have worked successfully, but we've hit a roadblock...
Since floating-point datatypes "double" does not offer an exact representation of all decmal values (e.g. 0.1 or 0.01, https://en.wikipedia.org/wiki/Floating-point_arithmetic#Accuracy_problems), does that not pose a problem for conversion calculations? Shouldn't decimals...
### What problem are you trying to solve? Hi, I want to generate script for each of the migrations into its' own script file, in my CI pipeline. It can...