Skip to content

Commit 5cdf63f

Browse files
committed
Add a vss-extension.json version for private testing in the cloud-based ADO Services.
To test the extension in the Microsoft hosted Azure DevOps Services, one needs to upload and publish the extension to the marketplace. To do this privately, one needs to upload the extension under a different name and with the "public" flag set to "false". This is done by the manifest committed here. Differences compared to the main manifest vss-extension.json: - Different extension name - public=false - History tab name contains a "Test"
1 parent d80e963 commit 5cdf63f

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{
2+
"manifestVersion": 1,
3+
"id": "HistoryDiffPrivateTest",
4+
"publisher": "Sedenion",
5+
"version": "1.4.0.106",
6+
"name": "History Diff Test",
7+
"description": "Azure DevOps extension to show the history of work item fields with proper diffs.",
8+
"public": false,
9+
"icons": {
10+
"default": "images/icon.png"
11+
},
12+
"categories": ["Azure Boards"],
13+
"tags": [
14+
"history",
15+
"diff",
16+
"changes",
17+
"work item",
18+
"work item history",
19+
"work item changes"
20+
],
21+
"content": {
22+
"details": {
23+
"path": "overview.md"
24+
}
25+
},
26+
"links": {
27+
"getstarted": {
28+
"uri": "https://github.com/Sedeniono/ADO-History-Diff"
29+
},
30+
"support": {
31+
"uri": "https://github.com/Sedeniono/ADO-History-Diff/issues"
32+
},
33+
"license": {
34+
"uri": "https://github.com/Sedeniono/ADO-History-Diff/blob/main/LICENSE"
35+
},
36+
"learn": {
37+
"uri": "https://github.com/Sedeniono/ADO-History-Diff"
38+
}
39+
},
40+
"repository": {
41+
"type": "git",
42+
"uri": "https://github.com/Sedeniono/ADO-History-Diff"
43+
},
44+
"targets": [
45+
{
46+
"id": "Microsoft.VisualStudio.Services"
47+
}
48+
],
49+
"demands": [
50+
"api-version/5.1"
51+
],
52+
"contributions": [
53+
{
54+
"id": "historydiff",
55+
"type": "ms.vss-work-web.work-item-form-page",
56+
"description": "Tab to show the history of work item fields with proper diffs.",
57+
"targets": [
58+
"ms.vss-work-web.work-item-form"
59+
],
60+
"properties": {
61+
"name": "History Test",
62+
"uri": "dist/historydiff.html"
63+
}
64+
}
65+
],
66+
"scopes": [
67+
"vso.work"
68+
],
69+
"files": [
70+
{
71+
"path": "dist",
72+
"addressable": true
73+
},
74+
{
75+
"path": "LICENSE",
76+
"addressable": true
77+
},
78+
{
79+
"path": "images/HistoryComparison.png",
80+
"addressable": true
81+
},
82+
{
83+
"path": "README.md",
84+
"addressable": true
85+
}
86+
]
87+
}

0 commit comments

Comments
 (0)