Skip to content

Commit

Permalink
Once again apply compiler components as found in a manual install. No…
Browse files Browse the repository at this point in the history
…w compiled projects actually build.
  • Loading branch information
jaraco committed Aug 7, 2021
1 parent 055b038 commit 632626b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ RUN cmd /c 'certutil -generateSSTFromWU roots.sst && certutil -addstore -f root
RUN setx TOX_WORK_DIR \tox

# Install Visual Studio
COPY . jaraco.windows
RUN py -m pip-run -q ./jaraco.windows -- -m jaraco.windows.msvc
RUN py -m pip-run -q jaraco.windows -- -m jaraco.windows.msvc

ENTRYPOINT ["powershell.exe", "-NoLogo", "-ExecutionPolicy", "Bypass"]
11 changes: 10 additions & 1 deletion jaraco/windows/msvc.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@


default_components = [
'Microsoft.VisualStudio.Component.CoreEditor',
'Microsoft.VisualStudio.Workload.CoreEditor',
'Microsoft.VisualStudio.Component.Roslyn.Compiler',
'Microsoft.Component.MSBuild',
'Microsoft.VisualStudio.Component.TextTemplating',
'Microsoft.VisualStudio.Component.VC.CoreIde',
'Microsoft.VisualStudio.Component.VC.Tools.x86.x64',
'Microsoft.VisualStudio.Workload.WDExpress',
'Microsoft.VisualStudio.Component.Windows10SDK.19041',
'Microsoft.VisualStudio.Component.VC.Redist.14.Latest',
'Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core',
'Microsoft.VisualStudio.Workload.NativeDesktop',
]


Expand Down

0 comments on commit 632626b

Please sign in to comment.