minor doc

master
JoYo 2021-02-19 19:57:25 -05:00
parent 559838835f
commit e97ed194a7
1 changed files with 2 additions and 2 deletions

View File

@ -104,8 +104,8 @@ It is recommended that you include a script in your project that copies the `C:\
```powershell ```powershell
Copy-Item C:\source\ -Destination C:\build\ -Recurse -Force Copy-Item C:\source\ -Destination C:\build\ -Recurse -Force
Set-Location -Path C:\build\source\project\ Set-Location -Path C:\build\source\
MSBuild project.sln MSBuild project.sln
Copy-Item C:\build\source\project\ -Destination C:\source\ -Recurse -Force
Set-Location -Path C:\source\ Set-Location -Path C:\source\
Move-Item C:\build\source\ -Destination C:\source\build\ -Force
``` ```