Compare commits

...

2 Commits

Author SHA1 Message Date
JoYo d0209fa181 removed nuget 2021-02-18 15:21:16 -05:00
JoYo 8a96d5c2c2 rm command from compose 2021-02-18 15:08:39 -05:00
4 changed files with 3 additions and 6 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 -Verbose -VsInstallPath C:\\msvc\\ -DevCmdArguments -arch=amd64"]
CMD ["powershell", "-NoExit", "-Command", "Import-Module C:\\msvc\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll;", "Enter-VsDevShell -VsInstallPath C:\\msvc\\ -DevCmdArguments -arch=amd64"]

View File

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

View File

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

View File

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