penenkel
penenkel
I could not find a way to specify constraints for items in a collection. Did I overlook something? This seems to me like a fairly common scenario, or is it...
I'm using NSubstitute (in conjunction with AutoFixture) to auto-mock service interfaces. Consider the following example ``` interface ISomeDependency { object MethodA(); object MethodB(); object MethodC(); } class SomeClass { public...
Consider [this](https://github.com/serilog/serilog-extensions-logging/blob/e25ed7ddfd0c664bd3a7e9cdbeeec6f87ff12964/src/Serilog.Extensions.Logging/Extensions/Logging/SerilogLogger.cs#L69) line in the `SerilogLogger` implementation. As you can see there, if writing the log message fails, the exception is written to the SelfLog. This includes the exception stacktrace....
by appending the current stacktrace to the exception and its stacktrace. Fixes #198
As the title states: I recently had to ingest some log files written by the (old) JsonFormatter. But apparently that is not a supported scenario yet. I think such a...
The spell check does not seem to work with the re-implemented markdown extension [Markdown Editor v2](https://github.com/madskristensen/MarkdownEditor2022). No spelling errors are marked, neither in the editor nor in the preview. Also...
# Summary It seems as if the dependencies of async lambda functions are not enumerated correctly. # Scenario Consider a class C2 that calls a method on class C1 and...
My concern is essentially the same as issue #3244 - I want to use kiota to generate typescript - I have explicitly marked most of the fields in my models...
The following image is what I currently see. I tried it with recent versions of Firefox, Edge and IE.  I found screenshots used in tutorials which show the exponents...
When producing a log entry from within a scope, as in this sample ``` var loggerFactory = TestLoggerFactory.Create(); var logger = loggerFactory.CreateLogger(); using (logger.BeginScope(new Dictionary() { { "property0", "value0" }...