Skip to content

Commit

Permalink
Add view actions to quickly add assemblies to tree, consolidate comma…
Browse files Browse the repository at this point in the history
…nd titles
  • Loading branch information
Rpinski committed Nov 9, 2021
1 parent 02cca2e commit b4d31d3
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
"commands": [
{
"command": "ilspy.decompileAssemblyInWorkspace",
"title": "Decompile IL Assembly in Current Workspace",
"title": "Add assembly from workspace",
"category": "ILSpy"
},
{
"command": "ilspy.decompileAssemblyViaDialog",
"title": "Decompile IL Assembly (pick file)",
"title": "Pick assembly from file system",
"category": "ILSpy"
},
{
Expand All @@ -84,6 +84,16 @@
}
],
"menus": {
"view/title": [
{
"command": "ilspy.decompileAssemblyInWorkspace",
"when": "view == ilspyDecompiledMembers"
},
{
"command": "ilspy.decompileAssemblyViaDialog",
"when": "view == ilspyDecompiledMembers"
}
],
"view/item/context": [
{
"command": "ilspy.unloadAssembly",
Expand Down Expand Up @@ -145,4 +155,4 @@
"extensionDependencies": [
"ms-dotnettools.vscode-dotnet-runtime"
]
}
}

0 comments on commit b4d31d3

Please sign in to comment.