Crafter.Thread/project.json

33 lines
873 B
JSON

{
"name": "crafter-thread",
"configurations": [
{
"name": "lib",
"interfaces": ["interfaces/Crafter.Thread", "interfaces/Crafter.Thread-ThreadPool"],
"implementations": ["implementations/Crafter.Thread-ThreadPool"],
"type":"library"
},
{
"name": "lib-shared",
"extends": ["lib"],
"type":"shared-library"
},
{
"name": "lib-debug",
"extends": ["lib"],
"debug": true
}
],
"tests":[
{
"name": "should-compile",
"implementations": ["tests/ShouldCompile/ShouldCompile"],
"dependencies": [
{
"path":"./project.json",
"configuration":"lib-shared"
}
]
}
]
}