1

how can i combined the framework and installer in single msi using wix.

reply me soon

Samir

Samir
  • 605
  • 3
  • 9
  • 14

1 Answers1

1

You cannot actually install your application and the .NET framework from a single MSI. You have to create a bootstrapper to install .NET. However, you could bundle everything in a self-extracting archive that automatically runs the bootstrapper after extraction.

I can't recommend a specific tool because I have not done this myself, but googling self-extracting archive setup.exe gives a numer of leads. Specifically, take a look at this stackoverflow question.

Community
  • 1
  • 1
Wim Coenen
  • 66,094
  • 13
  • 157
  • 251