WereDev

Results 11 comments of WereDev

I can look into it. I don't spend a lot of time maintaining this much anymore. What language would you be interested in first?

Kind of. I've mostly moved over to Linux as my main driver but I am keeping tabs on this. That being said, I don't currently have plans to support this...

Finally got around to another release. Anything in particular you're looking for?

> is it possible to just prevnt windows 10 from automatic rebooting after downloading/installing update so i could choose when to reboot the system myself? Not really. Once the Windows...

I'm also have the same issue. Looks like the process that tries to discover tests is running `dotnet test -t -v=q` and then trying to process the output. The process...

Did some more digging... XUnit does output the full name of each test, eg `namespace.classname.methodname` NUnit and MSTest do not, they just output `methodname`. It appears this is controlled by...

There's another extension that supports unit testing that seems to have sorted out how to find unit tests for nUnit and MSTest: derivitec-ltd.vscode-dotnet-adapter. This looks like it's using the `dotnet...

@sbellone Thanks, but I'm on 4.0.0. The only time it discovers tests is when I tell it to run all of them. @stefanforsberg When clicking on the Refresh for it...

I just checked the tread I had going on the NUnit GitHub (https://github.com/nunit/nunit3-vs-adapter/issues/896) and they provided this parameter: `-- NUnit.DisplayName=FullName`. Adding that to the test arguments in settings fixed the...

Nevermind, I spoke too soon. Adding that parameter does indeed allow the tests to be discovered using "Refresh", but breaks actually running the tests. After Refresh, trying to run an...