Compare commits

..

No commits in common. "d0209fa181924db96adb8afc9185a6e30ab6e090" and "25b97d8a791e0a7298d925cd87cb9eb2db8bf5e4" have entirely different histories.

4 changed files with 6 additions and 3 deletions

View File

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

View File

@ -81,7 +81,7 @@ services:
image: win_build
volumes:
- .:C:/source/
command: powershell -Command Import-Module C:\\msvc\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll; Enter-VsDevShell -VsInstallPath C:\\msvc\\
command: powershell -NoExit -Command Import-Module C:\\msvc\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll; Enter-VsDevShell -Verbose -VsInstallPath C:\\msvc\\
winxp_build:
image: winxp_build

View File

@ -7,6 +7,7 @@ services:
context: .
volumes:
- .:C:/source/
command: msbuild .
winxp_build:
image: winxp_build
@ -15,3 +16,4 @@ services:
dockerfile: winxp.Dockerfile
volumes:
- .:C:/source/
command: msbuild .

View File

@ -1,6 +1,7 @@
{
"version": "1.0",
"components": [
"Microsoft.VisualStudio.Workload.VCTools"
"Microsoft.VisualStudio.Workload.VCTools",
"Microsoft.VisualStudio.Component.NuGet"
]
}