Steve Gilham

Results 135 comments of Steve Gilham

> My expectation was: If I package my NuGet program 2: "Module.SapApiWrapper" as a single dll, then all dependencies will be hidden and not visible to the outside. This is...

Sorry, F# auto-properties of the form ``` type MyClass() = member val Property = 0 with get, set ``` are not marked `[CompilerGenerated]` -- the F# compiler does its own...

Branches, but no lines, are present for class `ClassLibrary1.CommandLine/Usage@17` (i.e. the lambda) in the `Invoke` method; the OpenCover format has the class, but with no methods. In both cases lines...

I also notice in passing that the start-column and end-column attributes (`sc` and `ec`) for the method are not what one would expect (the expected values being like 9,10; 13,38...

Yet another https://github.com/SteveGilham/altcover

Parsing the XML for the same numbers that are being emitted to stdout is trivial; the more so when you realise that only the 3rd line of the file, the...

I did the experiment based on the above, and I found that 1. It was better to locate the summary line by wildcard match amongst the first few than by...

Presumably due to compiler changes over the last two and a bit years. I'll make a few experiments to see what the code generation is like for other types than...

Using Microsoft Visual Studio Community 2019 Version 16.8.4 (with Visual F# Tools 16.8.0-beta.20507.4+da6be68280c89131cdba2045525b80890401defd), create a new F# library project. Change the code to be ``` namespace ForOpenCover open System module...

The IL produced is what is both easiest to produce in the compile phase, and most efficient to execute, treating as it does, all proper values of the type in...