c# - WiX: Install C++ 2005 before Crystal Reports -


using vs 2012 , wix 3.5, trying create wix installer install program have written requires crystal reports (using "sap crystal reports, developer version microsoft visual studio" version 13_0_6). found link explains microsoft visual c++ 2005 merge modules required crystal reports work.

i have 2 questions this:

1) using vs 2012 , therefore have vc110_* merge files available me. ok use these merge files or need specific c++ 2005 files?

2) can somehow wix create installer first install c++ files , crystal report files? right getting error referenced in link above means c++ not installed on target machine.

here snippet of wix file showing how including merge files:

        ...         <feature id="wpfcrystalreports" title="wpf crystal reports" level="1">           <mergeref id="msvc110crtx86" />           <mergeref id="crystalruntime" />           <componentgroupref id="productcomponents"/>          </feature>             </product>         <fragment>         <directory id="targetdir" name="sourcedir">           <merge id="msvc110crtx86" sourcefile="microsoft_vc110_crt_x86.msm" diskid="1" language="0"/>           <merge id="crystalruntime" sourcefile="crruntime_13_0_6.msm" diskid="1" language="0" />           <directory id="programfilesfolder">       ... 


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -