From 494a13f6f065ba3311f92568669cd74003e64c0a Mon Sep 17 00:00:00 2001 From: Adam Driscoll Date: Wed, 10 Jan 2024 12:41:06 -0600 Subject: [PATCH] Process ID --- package.json | 2 +- src/platform-treeview.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 46de888..6eb7ebc 100644 --- a/package.json +++ b/package.json @@ -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" }, diff --git a/src/platform-treeview.ts b/src/platform-treeview.ts index c5b8df2..a9115a3 100644 --- a/src/platform-treeview.ts +++ b/src/platform-treeview.ts @@ -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;