diff --git a/src/main.ts b/src/main.ts index d84821c05..a371f152b 100644 --- a/src/main.ts +++ b/src/main.ts @@ -83,6 +83,16 @@ function installRuntimeDependencies(extension: vscode.Extension, logger: Lo packageManager = new PackageManager(info, extension.packageJSON); logger.appendLine(); + // Display platform information and RID followed by a blank line + logger.append(`Platform: ${info.toString()}`); + if (info.runtimeId) { + logger.appendLine(` (${info.runtimeId})`); + } + else { + logger.appendLine(); + } + logger.appendLine(); + installationStage = 'downloadPackages'; const config = vscode.workspace.getConfiguration();