David Müller
David Müller
The hint with the VB project that @NerdBrez provided was worth its weight. I set up a solution with an MVC project with XUnit and a VB class library project...
The issue is the ```My``` namespace in Visual Basic ([My](https://docs.microsoft.com/en-us/dotnet/visual-basic/developing-apps/development-with-my/)). Usually a sequence point has a reference to a source file like this.  In Visual Basic the compiler injects...
By the way I updated the repro to be a lot smaller than the first implementation ([https://github.com/daveMueller/coverlet775](https://github.com/daveMueller/coverlet775)).
I opened a ticket at the roslyn repo for this [https://github.com/dotnet/roslyn/issues/51611](https://github.com/dotnet/roslyn/issues/51611). What I see is that this entry in the document table still has a language guid. So we could...
Can I work on this? Could you assign it to me.
There are two issues here: 1. A empty line in a lambda body is reported as covered. 2. A multiline conditional operator is reported as each line covered even if...
@MarcoRossignoli Can you elaborate this a bit? What if there is no runsettings file specified? >we should get it from the runsettings for the "current" run(in case of more tfms...
Ahh OK thanks I get it now. 👍
I created a PR with a prototype for this. Solutions can be discussed there [https://github.com/coverlet-coverage/coverlet/pull/1299](https://github.com/coverlet-coverage/coverlet/pull/1299).
I guess those are branch points that the compiler auto generated. We have to look into the compiled assembly to see if we can detect a pattern to ignore them.