From 8df3d906aaababdaa814d3664b83d8656aad8af2 Mon Sep 17 00:00:00 2001 From: Netkas Date: Sat, 25 Feb 2023 01:00:41 -0500 Subject: [PATCH] Updated project.json --- project.json | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/project.json b/project.json index b66685d..91c7f8f 100644 --- a/project.json +++ b/project.json @@ -10,32 +10,18 @@ "assembly": { "name": "TempFile", "package": "net.nosial.tempfile", + "copyright": "Copyright (c) 2022-2023 Nosial", + "description": "TempFile is a PHP library for creating temporary files.", "version": "1.0.0", "uuid": "910f98fe-b4c9-11ed-b13f-fdc283a6db6d" }, "build": { "source_path": "src", - "default_configuration": "debug", - "define_constants": { - "ASSEMBLY_NAME": "%ASSEMBLY.NAME%", - "ASSEMBLY_PACKAGE": "%ASSEMBLY.PACKAGE%", - "ASSEMBLY_VERSION": "%ASSEMBLY.VERSION%", - "ASSEMBLY_UID": "%ASSEMBLY.UID%" - }, + "default_configuration": "release", "configurations": [ - { - "name": "debug", - "output_path": "build/debug", - "define_constants": { - "DEBUG": "1" - } - }, { "name": "release", - "output_path": "build/release", - "define_constants": { - "DEBUG": "0" - } + "output_path": "build/release" } ] }