We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff9204 commit 4a73b06Copy full SHA for 4a73b06
src/Components/TestExplorer.fs
@@ -578,7 +578,12 @@ module DotnetCli =
578
childEnv |> box |> Some
579
580
Process.execWithCancel "dotnet" (ResizeArray(args)) env tryLaunchDebugger cancellationToken
581
- | NoDebug -> Process.execWithCancel "dotnet" (ResizeArray(args)) None ignore cancellationToken
+ | NoDebug ->
582
+ let env =
583
+ let staleOverrides = {| VSTEST_HOST_DEBUG = 0 |}
584
+ staleOverrides |> box |> Some
585
+
586
+ Process.execWithCancel "dotnet" (ResizeArray(args)) env ignore cancellationToken
587
588
589
type TrxPath = string
0 commit comments