Where are the redistributable merge modules for the release of Visual Studio C ++ Express?

I have already installed the MSI installers for programs compiled with Visual C ++ 2008 Express Edition and Wix (Windows Xml Installer). I just needed to bring in merge modules for C ++ Runtime Distributions from c: \ Program Files \ Common Files \ Merge Modules * .msm. I expected the procedure to be similar to Visual C ++ 2010 Express, but so far I have not been able to find merge modules. Perhaps they are no longer in Express Edition? Is there a new preferred way to create a Windows installer using Wix for my C ++ application that includes distributed runtimes?

Thanks in advance for your help or advice.

+3
source share
2 answers

Merge modules are not included in Visual C ++ Express 2010. Sadness and despair.

+3
source

You can search GitHub for a project that already contains the desired merge modules. For example: Microsoft_VC100_CRT_x64.msm

+1
source

Source: https://habr.com/ru/post/1751660/


All Articles