Youssef Victor
Youssef Victor
As this is very specific to IDE, I think we shouldn't incur the performance penalty for command-line builds. But I don't know if there is currently a way to do...
> 3\. @sharwell do you know why supressing IDE0005 is having no effect here? I reported this before and was supposed to be fixed by https://github.com/dotnet/roslyn/pull/73263
@tomchoondal If you open the browser's console, do you see any errors/warnings?
Changing this behavior is risky IMO. `Debug.Assert` explicitly terminates the process so that `catch`es don't mark such assertions. If anything to do here, I would like us to only change...
I don't see a good way to relate the failure to a test. Using async local can be good if tests are not run in parallel. But if we are...
How common it is that APIs in question will complete synchronously? Do we have that data?
`RunSettingsFilePath` isn't supported by VSTestBridge. Is that the request here? We have received this request quite few times, but it's a low value for us to support and is easy...
My understanding is that user is trying to specify it in runsettings and specifying the run settings via RunSettingsFilePath MSBuild property. This is by-design. If the scenario os different, I...
- `dotnet test --logger "trx"` is invalid for MTP. - `Main` of MTP isn't registering the MSBuild extension using `testApplicationBuilder.AddMSBuild`. So it's very expected that it doesn't recognize `--internal-msbuild-node`.
`--logger trx` will be completely ignored for MTP. We are changing that in MTP v2 so that it's an error instead of being ignored. The right way is: 1. If...