Compare commits

...

2 Commits

Author SHA1 Message Date
JoYo 098eeaa2f2 minor doc 2021-02-19 15:33:36 -05:00
JoYo 5311b06016 MFC ofc 2021-02-19 14:42:43 -05:00
3 changed files with 6 additions and 3 deletions

View File

@ -103,8 +103,9 @@ 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.
```powershell
Copy-Item $source_path -Destination $build_path
Set-Location -Path $build_path
Copy-Item C:\source\ -Destination C:\build\ -Recurse -Force
Set-Location -Path C:\build\source\project\
MSBuild project.sln
Copy-Item $build_path -Destination $out_path
Copy-Item C:\build\source\project\ -Destination C:\source\ -Recurse -Force
Set-Location -Path C:\source\
```

View File

@ -5,6 +5,7 @@
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Win81",
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.WinXP",
"Microsoft.VisualStudio.Component.VC.ATL",
"Microsoft.VisualStudio.Component.VC.ATLMFC",
"Microsoft.VisualStudio.Component.VC.CMake.Project",
"Microsoft.VisualStudio.Component.Windows10SDK.17763",
"Microsoft.VisualStudio.Component.Windows81SDK"

View File

@ -6,6 +6,7 @@
"Microsoft.Component.VC.Runtime.UCRTSDK",
"Microsoft.VisualStudio.Component.VC.ASAN",
"Microsoft.VisualStudio.Component.VC.ATL",
"Microsoft.VisualStudio.Component.VC.ATLMFC",
"Microsoft.VisualStudio.Component.VC.CMake.Project",
"Microsoft.VisualStudio.Component.VC.Llvm.Clang",
"Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset",