tgbotlib/project.json

99 lines
3 KiB
JSON
Raw Normal View History

2023-02-12 13:41:43 -05:00
{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
},
"options": []
},
"assembly": {
"name": "TgBotLib",
"package": "net.nosial.tgbotlib",
2023-02-20 21:49:19 -05:00
"description": "TgBotLib is a library for interacting with the Telegram Bot API",
"company": "Nosial",
2024-12-07 00:52:35 -05:00
"version": "8.0.2",
2023-02-12 13:41:43 -05:00
"uuid": "b409e036-ab04-11ed-b32e-9d3f57a644ae"
},
"build": {
"source_path": "src",
2023-02-14 20:55:42 -05:00
"default_configuration": "release",
"dependencies": [
{
"name": "net.nosial.loglib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.log=latest@n64"
2023-02-25 02:25:38 -05:00
},
{
"name": "net.nosial.tempfile",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.tempfile=latest@n64"
2024-11-04 01:06:23 -05:00
},
{
"name": "net.nosial.optslib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.opts=latest@n64"
},
{
"name": "net.nosial.psynclib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.psync=latest@n64"
}
],
2023-02-12 13:41:43 -05:00
"configurations": [
{
"name": "release",
"build_type": "ncc",
"output": "build/release/%ASSEMBLY.PACKAGE%.ncc"
},
2024-10-10 14:24:43 -04:00
{
"name": "release-compressed",
"build_type": "ncc",
"output": "build/release/%ASSEMBLY.PACKAGE%.gz.ncc",
"options": {
"compression": "high"
}
},
{
"name": "release-executable",
"build_type": "executable",
"output": "build/release/%ASSEMBLY.NAME%",
"options": {
"ncc_configuration": "release"
}
},
{
"name": "release-executable-compressed",
"build_type": "executable",
2024-10-10 15:09:09 -04:00
"output": "build/release/%ASSEMBLY.NAME%_gz",
2024-10-10 14:24:43 -04:00
"options": {
"ncc_configuration": "release-compressed"
}
},
{
"name": "debug",
"build_type": "ncc",
"output": "build/debug/%ASSEMBLY.PACKAGE%.ncc",
"define_constants": {
"DEBUG": "1"
}
2024-10-10 14:24:43 -04:00
},
{
"name": "debug-compressed",
"build_type": "ncc",
"output": "build/debug/%ASSEMBLY.PACKAGE%.gz.ncc",
"define_constants": {
"DEBUG": "1"
},
"options": {
"compression": "high"
}
2023-02-12 13:41:43 -05:00
}
]
}
2023-02-28 21:16:28 -05:00
}