Daniel Cazzulino

Results 360 comments of Daniel Cazzulino

Ok, so I see two slightly different opinions on this :). To sumarize, I think they would be: * Easiest, most typical way to extend classes (in .NET? everywhere?), just...

I think the union of both could work too, yeah. `OnInitializing/OnInitialized` would be a more deterministic way to run before everything in `BeginInit` and after everything in `EndInit`. Given the...

Yeah, that was my initial gut feeling too. Devs extending types via inheritance should know already how to properly handle overriding virtual members and invoking base as appropriate. Eventually the...

I came across this issue and decided to do something about it 🤷 now you can run: `dotnet tool install -g dotnet-trx`, and after running tests with `dotnet test -l...

Just cloned, run `dotnet test -l trx; trx` (with latest version) and got: ![image](https://github.com/microsoft/vstest/assets/169707/73ec09dc-9fa0-48aa-9eb8-496d39f59f99)

Added skipped tests reason: ![image](https://github.com/microsoft/vstest/assets/169707/9d85f0f6-9b7f-49a4-b4a1-69246690c320) GH PR reporting (when running in CI, detected automatically): ![image](https://github.com/microsoft/vstest/assets/169707/19412983-9e42-4cff-ae44-31b1a7fbf09f) With fully collapsible details: ![image](https://github.com/microsoft/vstest/assets/169707/9e0f40ed-e906-451e-a7ce-e1c83b0d6303)

I need to stop now and go back to what I was actually working on 🙄 ![image](https://github.com/microsoft/vstest/assets/169707/8f5598c0-14de-4b11-a109-92e0e956af37)

> could i just add the `--logger trx` to my `dotnet test` command and I can get the best of both worlds? That is indeed how it should Just Work...

@timheuer I'm just reading from the trx, so whatever all the various test frameworks emit and the logger collects, is what ends up in there. I only use xunit though....

@timheuer got latest from your repo, run `dotnet test -l trx; trx` and still got proper output: ![image](https://github.com/user-attachments/assets/c9359ae9-fb21-409a-8d97-193ac7a7e80e) ```shell ❯ dotnet --version 9.0.100-preview.2.24074.1 ```