Update project version and refine build configurations

This commit is contained in:
netkas 2024-09-17 12:03:01 -04:00
parent d44020aacf
commit 06b05c350a

View file

@ -35,7 +35,7 @@
"company": "Nosial", "company": "Nosial",
"copyright": "Copyright (c) 2022-2023 Nosial", "copyright": "Copyright (c) 2022-2023 Nosial",
"description": "ConfigLib is a library for reading and writing configuration files via the NCC Runtime API", "description": "ConfigLib is a library for reading and writing configuration files via the NCC Runtime API",
"version": "1.0.4", "version": "1.1.0",
"uuid": "9347259e-8e4d-11ed-85a7-fd07cf28ef35" "uuid": "9347259e-8e4d-11ed-85a7-fd07cf28ef35"
}, },
"build": { "build": {
@ -78,9 +78,18 @@
} }
], ],
"configurations": [ "configurations": [
{ {
"name": "release", "name": "release",
"output_path": "build/release" "build_type": "ncc",
"output": "build/release/%ASSEMBLY.PACKAGE%.ncc"
},
{
"name": "debug",
"build_type": "ncc",
"output": "build/debug/%ASSEMBLY.PACKAGE%.ncc",
"define_constants": {
"DEBUG": "1"
}
} }
] ]
} }