Compare commits

...

3 Commits

Author SHA1 Message Date
JoYo e7808799c9 revert to amd64 for rust 2021-02-23 18:32:37 -05:00
JoYo aedae7f426 minor doc 2021-02-19 20:15:02 -05:00
JoYo e97ed194a7 minor doc 2021-02-19 19:57:25 -05:00
2 changed files with 4 additions and 5 deletions

View File

@ -13,4 +13,4 @@ RUN C:\docker\vs_buildtools.exe --quiet --wait --norestart --nocache `
VOLUME C:\source\
WORKDIR C:\source\
ENTRYPOINT ["powershell", "-NoExit", "-Command", "Import-Module C:\\msvc\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll;", "Enter-VsDevShell -VsInstallPath C:\\msvc\\;"]
ENTRYPOINT ["powershell", "-NoExit", "-Command", "Import-Module C:\\msvc\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll;", "Enter-VsDevShell -VsInstallPath C:\\msvc\\ -DevCmdArguments -arch=amd64;"]

View File

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