Compare commits
No commits in common. "098eeaa2f2dbee86d2f2e509d8e9beb1b0f1293a" and "82c3193fb1e7aedfc6d3de63d16bd8502022852d" have entirely different histories.
098eeaa2f2
...
82c3193fb1
|
@ -103,9 +103,8 @@ MSBuild has trouble writing files to a mounted directory which occurs even if th
|
||||||
It is recommended that you include a script in your project that copies the `C:\source` directory into the container prior to running the build commands.
|
It is recommended that you include a script in your project that copies the `C:\source` directory into the container prior to running the build commands.
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
Copy-Item C:\source\ -Destination C:\build\ -Recurse -Force
|
Copy-Item $source_path -Destination $build_path
|
||||||
Set-Location -Path C:\build\source\project\
|
Set-Location -Path $build_path
|
||||||
MSBuild project.sln
|
MSBuild project.sln
|
||||||
Copy-Item C:\build\source\project\ -Destination C:\source\ -Recurse -Force
|
Copy-Item $build_path -Destination $out_path
|
||||||
Set-Location -Path C:\source\
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Win81",
|
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Win81",
|
||||||
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.WinXP",
|
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.WinXP",
|
||||||
"Microsoft.VisualStudio.Component.VC.ATL",
|
"Microsoft.VisualStudio.Component.VC.ATL",
|
||||||
"Microsoft.VisualStudio.Component.VC.ATLMFC",
|
|
||||||
"Microsoft.VisualStudio.Component.VC.CMake.Project",
|
"Microsoft.VisualStudio.Component.VC.CMake.Project",
|
||||||
"Microsoft.VisualStudio.Component.Windows10SDK.17763",
|
"Microsoft.VisualStudio.Component.Windows10SDK.17763",
|
||||||
"Microsoft.VisualStudio.Component.Windows81SDK"
|
"Microsoft.VisualStudio.Component.Windows81SDK"
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
"Microsoft.Component.VC.Runtime.UCRTSDK",
|
"Microsoft.Component.VC.Runtime.UCRTSDK",
|
||||||
"Microsoft.VisualStudio.Component.VC.ASAN",
|
"Microsoft.VisualStudio.Component.VC.ASAN",
|
||||||
"Microsoft.VisualStudio.Component.VC.ATL",
|
"Microsoft.VisualStudio.Component.VC.ATL",
|
||||||
"Microsoft.VisualStudio.Component.VC.ATLMFC",
|
|
||||||
"Microsoft.VisualStudio.Component.VC.CMake.Project",
|
"Microsoft.VisualStudio.Component.VC.CMake.Project",
|
||||||
"Microsoft.VisualStudio.Component.VC.Llvm.Clang",
|
"Microsoft.VisualStudio.Component.VC.Llvm.Clang",
|
||||||
"Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset",
|
"Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset",
|
||||||
|
|
Loading…
Reference in New Issue