From 098eeaa2f2dbee86d2f2e509d8e9beb1b0f1293a Mon Sep 17 00:00:00 2001 From: JoYo <> Date: Fri, 19 Feb 2021 15:33:36 -0500 Subject: [PATCH] minor doc --- README.mdown | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.mdown b/README.mdown index 08ae302..882043f 100644 --- a/README.mdown +++ b/README.mdown @@ -103,8 +103,9 @@ MSBuild has trouble writing files to a mounted directory which occurs even if th It is recommended that you include a script in your project that copies the `C:\source` directory into the container prior to running the build commands. ```powershell -Copy-Item $source_path -Destination $build_path -Set-Location -Path $build_path +Copy-Item C:\source\ -Destination C:\build\ -Recurse -Force +Set-Location -Path C:\build\source\project\ MSBuild project.sln -Copy-Item $build_path -Destination $out_path +Copy-Item C:\build\source\project\ -Destination C:\source\ -Recurse -Force +Set-Location -Path C:\source\ ```