Tomasz Kulig

Results 7 comments of Tomasz Kulig

I forgot to mention that I also had problems with loading `Microsoft.AspNetCore.Hosting.Abstractions` for projects with following runtimeconfig. ``` { "runtimeOptions": { "tfm": "net6.0", "frameworks": [ { "name": "Microsoft.NETCore.App", "version": "6.0.0"...

If `dotnet test` command is the only way to run such kind of tests then I'll go that way. I really like NUnit-console and it was good tool for my...

Possible temporary workaround: After update of `nunit.consolerunner\3.15.2\tools\agents\net6.0\nunit-agent.runtimeconfig.json` with following content I was able to resolve problem with loading libraries for mentioned tests. ``` { "runtimeOptions": { "tfm": "net6.0", "frameworks": [...

Hi I got hit by the same problem. In my case it effectively prevents us from upgrading StreamJsonRpc from 2.8.28 to any higher version. Configuration: - Visual Studio 2022 17.4.1....

Thank you. Works like a charm. We had `suggestion` level set for all VSTHRD warnings. Setting only VSTHRD010 to `none` was not enough in our case. Setting all warnings to...

It appears that disabling **VSTHRD110** is enough - 4:25 with StreamJsonRpc 2.13.33/NET 6 with VSTHRD110 set to `none` There is already bug reported for it https://github.com/microsoft/vs-threading/issues/971 In my case microsoft.visualstudio.threading.analyzers...

Hi Does anybody of you had success with configuring MaxConcurrentCalls or other throttling behavior for CoreWCF (in old WCF it was exposed via serviceThrottling)? I found this issue https://github.com/CoreWCF/CoreWCF/issues/547 And...