Updated project.json

This commit is contained in:
Netkas 2023-02-25 01:00:41 -05:00
parent 92c9c131de
commit 8df3d906aa

View file

@ -10,32 +10,18 @@
"assembly": { "assembly": {
"name": "TempFile", "name": "TempFile",
"package": "net.nosial.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", "version": "1.0.0",
"uuid": "910f98fe-b4c9-11ed-b13f-fdc283a6db6d" "uuid": "910f98fe-b4c9-11ed-b13f-fdc283a6db6d"
}, },
"build": { "build": {
"source_path": "src", "source_path": "src",
"default_configuration": "debug", "default_configuration": "release",
"define_constants": {
"ASSEMBLY_NAME": "%ASSEMBLY.NAME%",
"ASSEMBLY_PACKAGE": "%ASSEMBLY.PACKAGE%",
"ASSEMBLY_VERSION": "%ASSEMBLY.VERSION%",
"ASSEMBLY_UID": "%ASSEMBLY.UID%"
},
"configurations": [ "configurations": [
{
"name": "debug",
"output_path": "build/debug",
"define_constants": {
"DEBUG": "1"
}
},
{ {
"name": "release", "name": "release",
"output_path": "build/release", "output_path": "build/release"
"define_constants": {
"DEBUG": "0"
}
} }
] ]
} }