Skip to content

Commit 7bd68ad

Browse files
committed
Use "save-all" icon for export button, fix some command captions
1 parent 4ae08ed commit 7bd68ad

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

vscode-extension/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -147,23 +147,23 @@
147147
},
148148
{
149149
"command": "ilspy.decompileAssemblyInWorkspace",
150-
"title": "Add assembly from workspace",
150+
"title": "Add assembly or package from workspace",
151151
"category": "ILSpy"
152152
},
153153
{
154154
"command": "ilspy.decompileAssemblyViaDialog",
155-
"title": "Pick assembly from file system",
155+
"title": "Pick assembly or package from file system",
156156
"category": "ILSpy"
157157
},
158158
{
159159
"command": "ilspy.unloadAssembly",
160-
"title": "Unload Assembly",
160+
"title": "Unload",
161161
"category": "ILSpy",
162162
"icon": "$(close)"
163163
},
164164
{
165165
"command": "ilspy.reloadAssembly",
166-
"title": "Reload Assembly",
166+
"title": "Reload",
167167
"category": "ILSpy",
168168
"icon": "$(refresh)"
169169
},
@@ -194,7 +194,7 @@
194194
"command": "ilspy.export",
195195
"title": "Export Decompiled Code...",
196196
"category": "ILSpy",
197-
"icon": "$(export)"
197+
"icon": "$(save-all)"
198198
}
199199
],
200200
"menus": {
@@ -245,13 +245,13 @@
245245
"group": "inline@1"
246246
},
247247
{
248-
"command": "ilspy.unloadAssembly",
249-
"when": "view == ilspyDecompiledMembers && viewItem =~ /#manageRootEntries/",
248+
"command": "ilspy.export",
249+
"when": "view == ilspyDecompiledMembers && viewItem =~ /#export/",
250250
"group": "inline@2"
251251
},
252252
{
253-
"command": "ilspy.export",
254-
"when": "view == ilspyDecompiledMembers && viewItem =~ /#export/",
253+
"command": "ilspy.unloadAssembly",
254+
"when": "view == ilspyDecompiledMembers && viewItem =~ /#manageRootEntries/",
255255
"group": "inline@3"
256256
}
257257
],

0 commit comments

Comments
 (0)