Ryan Thomas
Ryan Thomas
An example for these cases would be very helpful. Using Brant Burnett's example above: Should the task from DoWorkAsync need to be held onto? Should the task from DoWorkAsync be...
Hoping this could help serve as a starting point. https://github.com/facebook/metro/compare/master...RhinobyteSoftware:ryant/master/input-source-map-support?expand=1 Could use some direction on desired way to pass the input source map through the pipeline, optimizations, etc.
@davidaurelio The performance overhead is definitely a concern that will have to be figured out; I don't think you would want to parse them into the compact format used by...
We're encountering this same issue when accessing the service provider within our health checks. And yes the lock **and** `ConcurrentDictionary` should be used to ensure only one instance is ever...
@jeremydmiller ~Will you accept a PR for this for the 4.x version of `Lamar`? We're not in a position to switch to net5 yet for the project's we're encountering this...
> I just hit this. I'm trying to modernize an internal application where its previous command-line parser was a NIH homebrew, and my users expect case-insensitivity. This is a show-stopper....
> Question for everyone on this thread. Per the suggestion made by @Kaelum above, would case-insensitive commands meet your backward compatibility needs, or are case-insensitive options also needed? If the...
IMO, the flexibility of the `Namespace="..."` option is more advantageous than the simplicity of the `IsNamespaceProvider="false"` option. Handling folder moves, changes, etc would be fairly easy to maintain for such...
For those wanting a workaround, I created a gist to show how this data can be included for any/all exception telemetry using a telemetry initializer. You would need to customize...
> A telemetry initializer is the right approach here. Yeah it has the limitations/drawbacks I mentioned above though such as no clear way to link/associate the data with the corresponding...