-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvss-extension.json
85 lines (85 loc) · 2.18 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
{
"manifestVersion": 1,
"id": "regex-match-replace",
"name": "RegEx Match & Replace",
"publisher": "kasunkodagoda",
"version": "0.0.0",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Visual Studio Team Services Task to replace file content with a regex match",
"categories": [
"Build and release"
],
"screenshots": [
{
"path": "screenshots/screenshot-0.png"
}
],
"galleryFlags": [
"Public"
],
"tags": [ "regex", "regular-expressions", "pattern-match", "match", "find-and-replace", "replace", "matching" ],
"icons": {
"default": "marketplace-icon.png"
},
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "LICENSE.md"
},
"privacypolicy": {
"path": "privacy-policy.md"
}
},
"links": {
"getstarted": {
"uri": "https://github.com/kasunkv/regex-match-replace-vsts-task/wiki"
},
"support": {
"uri": "https://github.com/kasunkv/regex-match-replace-vsts-task/issues"
},
"repository": {
"uri": "https://github.com/kasunkv/regex-match-replace-vsts-task"
},
"issues": {
"uri": "https://github.com/kasunkv/regex-match-replace-vsts-task/issues"
}
},
"branding": {
"color": "rgb(74, 74, 74)",
"theme": "dark"
},
"repository": {
"type": "git",
"uri": "https://github.com/kasunkv/regex-match-replace-vsts-task"
},
"files": [
{
"path": "dist/BuildTask"
},
{
"path": "screenshots",
"addressable": true
}
],
"contributions": [
{
"id": "regex-match-replace",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "dist/BuildTask/RegexMatchReplace"
}
}
],
"CustomerQnASupport": {
"enableqna":"true"
}
}