forked from microsoft/featuretimeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
102 lines (102 loc) · 3.13 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
{
"manifestVersion": 1,
"id": "workitem-feature-timeline-extension",
"version": "0.0.357",
"name": "Feature timeline and Epic Roadmap",
"description": "Feature timeline of your in-progress features.",
"publisher": "ms-devlabs",
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
},
{
"id": "Microsoft.TeamFoundation.Server",
"version": "[15.2,)"
}
],
"icons": {
"default": "dist/images/icon.png"
},
"tags": ["work item", "timeline", "feature", "portfolio", "roadmap"],
"content": {
"details": {
"path": "dist/details.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/microsoft/featuretimeline"
},
"scopes": ["vso.work", "vso.work_write", "vso.analytics"],
"files": [
{
"path": "dist",
"addressable": true
}
],
"categories": ["Plan and track"],
"contributions": [
{
"id": "workitem-feature-timeline",
"type": "ms.vss-web.tab",
"description": "Feature timeline of your in-progress features.",
"targets": ["ms.vss-work-web.product-backlog-tabs"],
"properties": {
"name": "Feature Timeline",
"order": 99,
"uri": "dist/featuretimeline.html",
"dynamic": true
}
},
{
"id": "workitem-epic-roadmap",
"type": "ms.vss-web.tab",
"description": "Epic roadmap.",
"targets": ["ms.vss-work-web.product-backlog-tabs"],
"properties": {
"name": "Epic Roadmap",
"order": 100,
"uri": "dist/EpicRoadmap.html",
"dynamic": true
}
},
{
"id": "workitem-portfolio-planning",
"type": "ms.vss-web.hub",
"description": "Portfolio planning.",
"targets": ["ms.vss-work-web.work-hub-group"],
"properties": {
"name": "Portfolio plans (Beta)",
"uri": "dist/PortfolioPlanning.html",
"dynamic": true,
"icon": "dist/images/portfolio-plans-icon.png"
},
"constraints": [
{
"name": "ExecutionEnvironment",
"properties": {
"hosted": true
}
}
]
},
{
"id": "workitem-portfolio-planning-add-to-plan-action",
"type": "ms.vss-web.action-provider",
"description": "",
"targets": ["ms.vss-work-web.work-item-context-menu"],
"properties": {
"group": "contributed",
"uri": "dist/AddToPlanAction.html"
}
},
{
"id": "workitem-portfolio-planning-show-all-plans-action",
"type": "ms.vss-web.control",
"targets": [],
"properties": {
"uri": "dist/SelectPlanDialog.html"
}
}
]
}