Compare commits

..

No commits in common. "e7808799c9b865df79ab87e9a04deea9147602a7" and "559838835f348c31e57d9e23bf5afe960f383b0e" have entirely different histories.

2 changed files with 5 additions and 4 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\\ -DevCmdArguments -arch=amd64;"]
ENTRYPOINT ["powershell", "-NoExit", "-Command", "Import-Module C:\\msvc\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll;", "Enter-VsDevShell -VsInstallPath C:\\msvc\\;"]

View File

@ -104,7 +104,8 @@ 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
MSBuild C:\build\project.sln
Copy-Item C:\build\bin -Destination C:\source\ -Recurse -Force
Remove-Item -Recurse C:\build\
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\
```