How to update appsettings.json from wix custom actions with the values passed as parameter during command line installation?
I’m currently working on a project where I am using Wix for the installer. My application is developed using .net core and having appsettings.json as a configuration file. I would like to update the values on the appsettings.json with the values which passed as a parameter during command-line installation For example, I am passing value 500 through parameter BUFFER.SIZE msiexec.exe /i c:\PathToMyMsi\MyMsi.msi BUFFER.SIZE="500" /L*vx c:\PathToMyLog.txt To achieve this, I have defined property and custom action in Product.wxs as follow <Property Id="BUFFER.SIZE" /> <Binary Id="GetParameters.CA"