initial: nsJson plugin 1.1.3

This commit is contained in:
2026-04-29 23:19:40 +02:00
commit 0947690677
61 changed files with 10173 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
!include MUI2.nsh
Name `nsJSON plug-in`
OutFile nsJSON_MultiTree.exe
RequestExecutionLevel user
ShowInstDetails show
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_LANGUAGE English
Section
CreateDirectory $EXEDIR\Output
DetailPrint `Read: $EXEDIR\Input\Example1.json into Example1`
nsJSON::Set /tree Example1 /file $EXEDIR\Input\Example1.json
DetailPrint `Read: $EXEDIR\Input\Example2.json into Example2`
nsJSON::Set /tree Example2 /file $EXEDIR\Input\Example2.json
DetailPrint `Generate: $EXEDIR\Output\Example2.json from Example2`
nsJSON::Serialize /tree Example2 /format /file $EXEDIR\Output\Example2.json
DetailPrint `Generate: $EXEDIR\Output\Example1.json from Example1`
nsJSON::Serialize /tree Example1 /format /file $EXEDIR\Output\Example1.json
SectionEnd