/WixJsonExtension

An extension to Windows® installer XML (WiX) to create or modify JSON-formatted files during an installation.

Primary LanguageC++Apache License 2.0Apache-2.0

WixJsonExtension

An extension to Windows® installer XML (WiX) to create or modify JSON-formatted files during an installation.

Status: Under construction, non-functional

Windows® installer XML is an open-source set of tools to create Windows® software installation setups (*.msi), using XML files to define the content and behavior of the setup. One important step in most setups is to modify configuration files to reflect either settings specified during the setup by the user, or other settings specific to the individual installation. Windows® installer has built-in actions to modify the classic ini-files (*.ini), and WiX provides extensions (and the required custom actions) to modify XML files, and in particular the Application Configuration files (*.exe.config or *.dll.config) used by Microsoft® .NET applications. Today, a third format has become popular, especially in web applications: JSON - JavaScript Object Notation. Often used in networking scenarios (REST services, JQuery, etc.), it is also used as a local data store format, including configuration files. Especially .NET Core relies heavily on JSON-formatted configuration files, both during development and runtime.

This extension for WiX provides methods to modify JSON files (*.json) during a software installation. The new XML elements provided by this extension, JsonFile and JsonConfig, work very similar to the existing extensions for XML files, XmlFile and XmlConfig

Acknowledgements

WixJsonExtension uses jsoncons by Daniel Parker to read and manipulate JSON files.