-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvss-extension.json
108 lines (108 loc) · 2.83 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
{
"manifestVersion": 1,
"id": "block-duplicate-work-items",
"publisher": "soft-cor",
"version": "0.0.93",
"name": "Block Duplicate Work Items",
"description": "Block Duplicate Work Items",
"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/AzureBoardsBlockDuplicates"
},
"badges": [
{
"href": "https://dev.azure.com/softcores/AzureBoardsBlockDuplicates/_build?definitionId=8&_a=summary",
"uri": "https://dev.azure.com/softcores/AzureBoardsBlockDuplicates/_apis/build/status/keyoke.AzureBoardsBlockDuplicates?branchName=main",
"description": "Azure Pipeline for AzureBoardsBlockDuplicates"
}
],
"tags": [
"duplicates",
"block",
"de-duplication"
],
"icons": {
"default": "logo.png"
},
"screenshots": [
{
"path": "images/duplicate-sample.png"
}
],
"scopes": ["vso.work"],
"demands": [
"api-version/3.0"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "block-duplicate-observer",
"type": "ms.vss-work-web.work-item-notifications",
"description": "Block Duplicate Work Items WorkItem Form Listener",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"uri": "block-duplicate-observer.html"
}
},
{
"id": "block-duplicate-project-admin-hub",
"type": "ms.vss-web.hub",
"description": "Block Duplicate Work Items Admin Hub",
"targets": [
"ms.vss-web.project-admin-hub-group"
],
"properties": {
"name": "Block Duplicate Work Items",
"order": 100,
"uri": "block-duplicate-project-admin.html"
}
}
],
"files": [
{
"path": "dist",
"packagePath": "scripts",
"addressable": true
},
{
"path": "images",
"addressable": true
},
{
"path": "logo.png",
"addressable": true
},
{
"path": "block-duplicate-observer.html",
"addressable": true
},
{
"path": "block-duplicate-project-admin.html",
"addressable": true
}
]
}