Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

[REVIEW ONLY] Fix brackets issue #2872- "Windows: Brackets may fail to launch on a very clean OS image" #424

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion installer/win/Brackets.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,16 @@
</Directory>
<Directory Id="ProgramMenuFolder"/>
</Directory>


<!-- add MSVCRT merge modules -->
<DirectoryRef Id="TARGETDIR">
<Merge Id="VCRedist" SourceFile="$(env.CommonProgramFiles)\Merge Modules\Microsoft_VC100_CRT_x86.msm" DiskId="1" Language="0"/>
</DirectoryRef>

<Feature Id="VCRedist" Title="Visual C++ 8.0 Runtime" AllowAdvertise="no" Display="hidden" Level="1">
<MergeRef Id="VCRedist"/>
</Feature>

<!-- Set default install location -->
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
<!-- Install Files -->
Expand Down