forked from alanwales/vsts-resharper-code-quality-task
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vss-extension.json
72 lines (72 loc) · 1.61 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
{
"manifestVersion": 1,
"id": "resharper-code-inspections",
"name": "Resharper Code Quality Analysis",
"version": "1.0.11",
"publisher": "AshleyMedway",
"public": false,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Run the Resharper Command-Line Tool and automatically fail builds when code quality issues are found. Configure team-shared coding rules for seamless code quality standards enforcement on each commit",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "extension-icon.png"
},
"tags": [
"resharper",
"code quality",
"static code analysis"
],
"screenshots": [
{
"path": "screenshot1.png"
},
{
"path": "screenshot2.png"
}
],
"files": [
{
"path": "Task"
},
{
"path": "images",
"addressable": true
},
{
"path": "samples",
"addressable": true
}
],
"contributions": [
{
"id": "custom-build-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Task"
}
}
],
"scopes": [
"vso.build",
"vso.build_execute"
],
"links": {
"learn": {
"uri": "https://confluence.jetbrains.com/display/NETCOM/Introducing+InspectCode"
}
},
"content": {
"details": {
"path": "README.md"
}
}
}