loglib2/project.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2025-01-16 00:20:45 -05:00
{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
}
},
"assembly": {
"name": "LogLib2",
"package": "net.nosial.loglib2",
2025-01-27 03:05:28 -05:00
"version": "1.0.2",
2025-01-16 00:20:45 -05:00
"uuid": "11ac2c4d-94e5-4cc1-a2d3-054ac3f425b4"
},
"build": {
"source_path": "src/LogLib2",
"default_configuration": "release",
"main": "main_policy",
"define_constants": {
"ASSEMBLY_PACKAGE": "%ASSEMBLY.PACKAGE%",
"ASSEMBLY_VERSION": "%ASSEMBLY.VERSION%",
"ASSEMBLY_UID": "%ASSEMBLY.UID%"
},
2025-01-22 01:02:17 -05:00
"dependencies": [
{
"name": "net.nosial.optslib",
"version": "latest",
"source": "nosial/libs.opts=latest@n64"
}
],
2025-01-16 00:20:45 -05:00
"configurations": [
{
"name": "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"
}
}
]
}
}