From 06b05c350a6c5e6b3cddc4510e5b50b173273b2e Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 17 Sep 2024 12:03:01 -0400 Subject: [PATCH] Update project version and refine build configurations --- project.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/project.json b/project.json index 6877309..cc2c066 100644 --- a/project.json +++ b/project.json @@ -35,7 +35,7 @@ "company": "Nosial", "copyright": "Copyright (c) 2022-2023 Nosial", "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" }, "build": { @@ -78,9 +78,18 @@ } ], "configurations": [ - { + { "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" + } } ] }