-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 5.58 KB
/
Copy pathpackage.json
File metadata and controls
174 lines (174 loc) · 5.58 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "soap-service-reference-auto-runner",
"displayName": "SOAP Service Reference Auto-Runner",
"description": "Automatically runs dotnet-svcutil when dotnet-svcutil.params.json files change in ServiceReference folders",
"version": "1.0.0",
"publisher": "angelojulioth",
"author": {
"name": "Angelo Valderrama",
"email": "angelojulioth@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/angelojulioth/soap-service-reference-auto-runner.git"
},
"homepage": "https://github.com/angelojulioth/soap-service-reference-auto-runner#readme",
"bugs": {
"url": "https://github.com/angelojulioth/soap-service-reference-auto-runner/issues"
},
"license": "MIT",
"keywords": ["soap", "wsdl", "service-reference", "dotnet", "svcutil", "web-services"],
"engines": {
"vscode": "^1.106.1"
},
"categories": [
"Other"
],
"icon": "icon.png",
"extensionKind": [
"workspace"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"codeLensProviders": [
{
"language": "json",
"scheme": "file"
}
],
"commands": [
{
"command": "soap-service-reference-auto-runner.runSvcUtil",
"title": "Run dotnet-svcutil",
"category": "SOAP"
},
{
"command": "soap-service-reference-auto-runner.generateSvcParams",
"title": "Generate dotnet-svcutil.params.json",
"category": "SOAP"
},
{
"command": "soap-service-reference-auto-runner.setupWatchers",
"title": "Setup File Watchers",
"category": "SOAP"
},
{
"command": "soap-service-reference-auto-runner.startWsdlMonitoring",
"title": "Start WSDL Monitoring",
"category": "SOAP"
},
{
"command": "soap-service-reference-auto-runner.stopWsdlMonitoring",
"title": "Stop WSDL Monitoring",
"category": "SOAP"
},
{
"command": "soap-service-reference-auto-runner.debugProject",
"title": "Debug C# Project",
"category": "SOAP"
},
{
"command": "soap-service-reference-auto-runner.runProject",
"title": "Run C# Project",
"category": "SOAP"
}
],
"menus": {
"explorer/context": [
{
"command": "soap-service-reference-auto-runner.runSvcUtil",
"when": "resourceFilename == dotnet-svcutil.params.json",
"group": "1_modification"
},
{
"command": "soap-service-reference-auto-runner.generateSvcParams",
"when": "explorerResourceIsFolder",
"group": "1_modification"
}
],
"editor/context": [
{
"command": "soap-service-reference-auto-runner.runSvcUtil",
"when": "resourceFilename == dotnet-svcutil.params.json",
"group": "1_modification"
}
],
"commandPalette": [
{
"command": "soap-service-reference-auto-runner.generateSvcParams"
},
{
"command": "soap-service-reference-auto-runner.setupWatchers"
},
{
"command": "soap-service-reference-auto-runner.runSvcUtil",
"when": "resourceFilename == dotnet-svcutil.params.json"
}
]
},
"configuration": {
"title": "SOAP Service Reference Auto-Runner",
"properties": {
"soapServiceReference.autoRun": {
"type": "boolean",
"default": true,
"description": "Automatically run dotnet-svcutil when params file changes"
},
"soapServiceReference.showNotifications": {
"type": "boolean",
"default": true,
"description": "Show notifications when dotnet-svcutil runs"
},
"soapServiceReference.autoUpdateOnWsdlChange": {
"type": "boolean",
"default": false,
"description": "Automatically update service references when WSDL changes are detected (without asking)"
},
"soapServiceReference.wsdlCheckInterval": {
"type": "number",
"default": 30,
"minimum": 5,
"maximum": 300,
"description": "Interval in seconds to check for WSDL changes (5-300 seconds)"
},
"soapServiceReference.showWsdlChangeDetails": {
"type": "boolean",
"default": true,
"description": "Show detailed information about WSDL changes in notifications"
},
"soapServiceReference.enableWsdlMonitoringByDefault": {
"type": "boolean",
"default": false,
"description": "Automatically start WSDL monitoring when opening service reference files"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.106.1",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"typescript-eslint": "^8.46.3",
"eslint": "^9.39.1",
"esbuild": "^0.27.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2"
}
}