From 67a3c7c60a5fec11e966b15bae0e755771f5c456 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Fri, 21 Apr 2023 10:49:29 -0700 Subject: [PATCH] Update Providing-Binary-Logs.md Need to include `""` around the path in the Powershell case --- documentation/wiki/Providing-Binary-Logs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/wiki/Providing-Binary-Logs.md b/documentation/wiki/Providing-Binary-Logs.md index b9be0b3f59b..6f3abb1d467 100644 --- a/documentation/wiki/Providing-Binary-Logs.md +++ b/documentation/wiki/Providing-Binary-Logs.md @@ -24,7 +24,7 @@ Set `MSBUILDDEBUGENGINE` environment variable to `'1'` and (optionally) set `MSB `PowerShell:` ``` > $env:MSBUILDDEBUGENGINE = 1 -> $env:MSBUILDDEBUGPATH= C:\MSBuildReproLogs +> $env:MSBUILDDEBUGPATH="C:\MSBuildReproLogs" > & "devenv.exe" MySolution.sln ```