-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
115 lines (115 loc) · 3.19 KB
/
vss-extension.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"manifestVersion": 1,
"id": "import-csv-discussions",
"publisher": "soft-cor",
"version": "0.0.49",
"name": "Import CSV file to work item discussions",
"description": "Import CSV file to work item discussions",
"public": true,
"galleryFlags": [
"Preview"
],
"categories": ["Azure Boards"],
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "LICENSE"
}
},
"links": {
"support": {
"uri": "https://blog.soft-cor.com"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/keyoke/AzureBoardsImportCSVToWorkitemDiscussions"
},
"badges": [
{
"href": "https://dev.azure.com/softcores/AzureBoardsImportCSVToWorkitemDiscussions/_build?definitionId=6&_a=summary",
"uri": "https://dev.azure.com/softcores/AzureBoardsImportCSVToWorkitemDiscussions/_apis/build/status/keyoke.AzureBoardsImportCSVToWorkitemDiscussions?branchName=main",
"description": "Azure Pipeline for AzureBoardsImportCSVToWorkitemDiscussions"
}
],
"tags": [
"csv",
"import",
"discussion",
"comments"
],
"icons": {
"default": "logo.png"
},
"screenshots": [
{
"path": "images/discussion-comment.png"
},
{
"path": "images/csv-contents-sample.png"
}
],
"scopes": ["vso.work_write"],
"demands": [
"api-version/3.0"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "import-csv-discussions-action",
"type": "ms.vss-web.action",
"description": "Import CSV file to work item discussions",
"targets": [
"ms.vss-work-web.work-item-query-menu",
"ms.vss-work-web.work-item-query-results-toolbar-menu",
"ms.vss-work-web.query-result-work-item-menu",
"ms.vss-work-web.work-item-toolbar-menu"
],
"properties": {
"text": "Import CSV to discussions",
"title": "Import CSV to discussions",
"icon": "images/icon.png",
"groupId": "actions",
"uri": "import-csv-discussions-action.html"
}
},
{
"id": "file-upload",
"type": "ms.vss-web.control",
"description": "The content to be displayed in the dialog",
"targets": [],
"properties": {
"uri": "file-upload-dialog.html"
}
}
],
"files": [
{
"path": "dist",
"packagePath": "scripts",
"addressable": true
},
{
"path": "images",
"addressable": true
},
{
"path": "logo.png",
"addressable": true
},
{
"path": "import-csv-discussions-action.html",
"addressable": true
},
{
"path": "file-upload-dialog.html",
"addressable": true
}
]
}