Setup targeting both x86 and x64?

前端 未结 4 532
执笔经年
执笔经年 2020-12-09 03:47

I have a program that requires both x64 and x86 dlls (it figures out which ones it needs at run time), but when trying to create a setup, it complains:

4条回答
  •  伪装坚强ぢ
    2020-12-09 04:24

    The MSI created by the setup project (in Visual Studio) can only target one platform at a time. Your option is to either make 2 MSI's, merge them together and make a custom setup boot strapper that choose between the two. There are some 3rd party products,like Advanced Installer for example, that can do this for you.

提交回复
热议问题