loglib/project.json

52 lines
1.4 KiB
JSON
Raw Normal View History

{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
},
"update_source": {
"source": "nosial/libs.log@n64",
"repository": {
"name": "n64",
"type": "gitlab",
"host": "git.n64.cc",
"ssl": true
}
2023-10-11 18:50:33 -04:00
}
},
"assembly": {
"name": "LogLib",
"package": "net.nosial.loglib",
"company": "Nosial",
2023-01-29 21:13:51 -05:00
"copyright": "Copyright (c) 2022-2023 Nosial",
"version": "1.1.0",
"uuid": "de1deca6-7b65-11ed-a8b0-a172264634d8"
},
"build": {
"source_path": "src",
"default_configuration": "release",
"dependencies": [
{
"name": "net.nosial.optslib",
"version": "latest",
"source": "nosial/libs.opts=latest@n64"
}
],
"configurations": [
{
"name": "release",
"build_type": "ncc",
"output": "build/release/%ASSEMBLY.PACKAGE%.ncc"
},
{
"name": "release_static",
"build_type": "ncc",
"options": {
"static": true
},
"output": "build/release/%ASSEMBLY.PACKAGE%_static.ncc"
}
]
}
}