Robin Sue

Results 58 comments of Robin Sue

For those running into this issue and unwilling to build from source, i've devised a workaround ```csharp namespace Test { public static class WebApiConfig { public static void Register(HttpConfiguration config)...

> Are we talking about true stack allocation yes > or are we talking about scalar replacement The JIT currently only does this for structs, it's called `struct promotion` >...

@sgf > If .net teams do not have the technical ability to solve the problem, then learn from the go team and hire experts from outside to solve the problem....

Does not reproduce for me, regardless of whether i use `Change cartridge` or just pull the cartridge out directly.

Current AngleSharp also implements a CSSOM

Yes, that is expected. Most of SerilogAnalyzer is a syntax analyzer so adding support for VB.NET would require duplicating and rewriting everything or dropping support for old versions of VS...

😓 I'll end up writing a theorem prover, i can see it comming 😛 One alternative would be changing the prefix, like so: ```xml

Assuming you've installed everything correctly, do you have a code sample where you'd expect something to happen and what would you expect to see in particular? How did you install...

@markashton the analyzer analyzes everything by the rules of serilog that is decorated with ` [MessageTemplateFormatMethod("messageTemplate")]` which also includes [Serilogs ILogger](https://github.com/serilog/serilog/blob/dev/src/Serilog/ILogger.cs), just not Microsofts ILogger

@markashton if you use ```csharp Serilog.ILogger _logger = Log.ForContext(); _logger.Information("No result found for query, SearchTerm{searchTerm} Page:{page} PerPage:{perPage}", searchTerm); ``` then it also works. Authors of logging Frameworks are not very...