How to modify json with WixToolset v3.11

Viewed 4745

I want to modify values in an existing json file.

When I run my installer I type server name which points to my API. After I typed server name I want to add that value in app settings json file.

enter image description here

enter image description here

enter image description here

2 Answers

WixJsonExtension is a WiX extension which provides methods to modify JSON files during installation. The JsonFile element works very similar to the XmlFile element.

Related