forked from southworks/OpenAI-Code-Review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvss-extension.json
More file actions
46 lines (46 loc) · 1.01 KB
/
vss-extension.json
File metadata and controls
46 lines (46 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"manifestVersion": 1,
"id": "swdevflow-code-review",
"publisher": "SWDevflow",
"version": "1.0.39",
"name": "AI Code Review Task",
"description": "AI code review extension to review pull request changes using your own Azure OpenAI endpoints",
"public": false,
"categories": ["Azure Repos", "Azure Pipelines"],
"tags": ["ai", "openai", "gpt", "llm", "gpt4", "copilot", "code", "review", "chatgpt"],
"icons": {
"default": "images/icon-128x128.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "swdevflow-code-review",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "ai-code-review"
}
}
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE.txt"
}
},
"files": [
{
"path": "ai-code-review"
},
{
"path": "images",
"addressable": true
}
]
}