2
我正在研究一個.NET分析器(我的項目輸出是一個DLL)。我已經構建了2個DLL(用C++編寫):一個將由x86 .NET進程加載,另一個由x64加載。我想生成一個單一的MSI(目標x86格式),檢查操作系統是64位還是32位。然後註冊正確的DLL,即:MSI - 有條件註冊DLL
- Project output : - the_x64.DLL
- the_x86.DLL
- A single MSI that targets x86 machines : contains the 2 DLLs
- if the OS is 64 bits then both of the DLLs are registered
- if the OS is 32 bits then only the x86 dll is registered
這可能嗎?