From e7808799c9b865df79ab87e9a04deea9147602a7 Mon Sep 17 00:00:00 2001 From: JoYo <> Date: Tue, 23 Feb 2021 18:32:37 -0500 Subject: [PATCH] revert to amd64 for rust --- Dockerfile | 2 +- README.mdown | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d880e4d..bbb01fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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;"] diff --git a/README.mdown b/README.mdown index 47dbaed..de97d82 100644 --- a/README.mdown +++ b/README.mdown @@ -106,4 +106,5 @@ It is recommended that you include a script in your project that copies the `C:\ 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\ ```