mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "intelligence-agent-framework-dotnet",
|
|
"targets": {
|
|
"test": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "dotnet run --project packages/intelligence-agent-framework-dotnet/tests/Skills.Tests.csproj"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
},
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "dotnet build packages/intelligence-agent-framework-dotnet/src/CopilotKit.Intelligence.AgentFramework.csproj --configuration Release -warnaserror"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
},
|
|
"pack": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "dotnet pack packages/intelligence-agent-framework-dotnet/src/CopilotKit.Intelligence.AgentFramework.csproj --configuration Release"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
},
|
|
"test-minimum": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "dotnet run --project packages/intelligence-agent-framework-dotnet/tests/Skills.Tests.csproj -p:AgentFrameworkVersion='1.0.0'"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
},
|
|
"test-latest": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "dotnet run --project packages/intelligence-agent-framework-dotnet/tests/Skills.Tests.csproj -p:AgentFrameworkVersion='1.*'"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
},
|
|
"verify-distribution": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash packages/intelligence-agent-framework-dotnet/tests/check-package.sh"
|
|
},
|
|
"cache": false,
|
|
"dependsOn": []
|
|
}
|
|
}
|
|
}
|