Skip to content

Commit

Permalink
Process ID
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll committed Jan 10, 2024
1 parent ea4f3ff commit 494a13f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "PowerShell Universal",
"description": "Visual Studio Code tools for PowerShell Universal",
"publisher": "ironmansoftware",
"version": "4.2.1",
"version": "4.2.2",
"engines": {
"vscode": "^1.72.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/platform-treeview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class ProcessTreeItem extends ParentTreeItem {
}
}
constructor(process: Process) {
super(process.description, vscode.TreeItemCollapsibleState.Collapsed);
super(`${process.description} (${process.processId})`, vscode.TreeItemCollapsibleState.Collapsed);

this.process = process;

Expand Down

0 comments on commit 494a13f

Please sign in to comment.