Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

binary files in wix install package

I can't figure it out: do the files which are referenced in the Binary element of .wxs file get copied to the target machine, or are they resources of the install package?

like image 570
Bogdan Verbenets Avatar asked Aug 13 '26 09:08

Bogdan Verbenets


1 Answers

They are definitely the resources of the install package. This means that they don't get installed to your application folder, but Windows Installer is supposed to extract it internally to some temporary location to address the functionality in it. And it is supposed to clean after itself. But this is definitely not visible to the end users of your installation.

At least, this is how I understand it.

like image 96
Yan Sklyarenko Avatar answered Aug 15 '26 23:08

Yan Sklyarenko