I'm building ISM project (Basic MSI) using IsCmdBld.exe. I wanted to pass couple of Properties to ISM file. When I'm executing following command, it's building properly with the passed properties.
IsCmdBld.exe -p "<ISM file path>" -z "ProductName=TempProduct" -z "ProductVersion=3.0.0.0" -z "Manufacturer=TempManufacturer" -z "INSTALLDIR=C:\Program Files\Temp Product"
But I wanted to pass these properties through .ini file. I tried to add these parameters in .ini and passed it to IsCmdBld.exe with -i
parameter. Project got build but property didn't get set.
So how we can pass these Property values through .ini file to ISM project while building it using IsCmdBld.exe?