diff --git a/package.json b/package.json index fbadaccfbc..be7ebaf96a 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "version": "2021.4.2", "preview": true, "publisher": "ms-vscode", - "description": "(Preview) Develop PowerShell scripts in Visual Studio Code!", + "description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!", "engines": { "vscode": "^1.52.0" }, diff --git a/tools/ReleaseTools.psm1 b/tools/ReleaseTools.psm1 index a0d219366c..6ff3243106 100644 --- a/tools/ReleaseTools.psm1 +++ b/tools/ReleaseTools.psm1 @@ -271,7 +271,7 @@ function Update-Version { # TODO: Maybe cleanup the replacement logic. switch ($RepositoryName) { "vscode-powershell" { - $d = "Develop PowerShell scripts in Visual Studio Code!" + $d = "Develop PowerShell modules, commands and scripts in Visual Studio Code!" if ($Version.PreReleaseLabel) { $name = "powershell-preview" $displayName = "PowerShell Preview" diff --git a/tools/postReleaseScripts/updateAzureDataStudio.ps1 b/tools/postReleaseScripts/updateAzureDataStudio.ps1 index 54687435a4..fdac19a703 100644 --- a/tools/postReleaseScripts/updateAzureDataStudio.ps1 +++ b/tools/postReleaseScripts/updateAzureDataStudio.ps1 @@ -104,7 +104,7 @@ function NewPowerShellExtensionEntry extensionId = '35' extensionName = 'powershell' displayName = 'PowerShell' - shortDescription = 'Develop PowerShell scripts in Azure Data Studio' + shortDescription = 'Develop PowerShell modules, commands and scripts in Azure Data Studio' publisher = [ordered]@{ displayName = 'Microsoft' publisherId = 'Microsoft' diff --git a/vscode-powershell.build.ps1 b/vscode-powershell.build.ps1 index 8406c0feff..fb12278005 100644 --- a/vscode-powershell.build.ps1 +++ b/vscode-powershell.build.ps1 @@ -141,12 +141,12 @@ task UpdatePackageJson { if ($script:IsPreviewExtension) { $script:PackageJson.name = "powershell-preview" $script:PackageJson.displayName = "PowerShell Preview" - $script:PackageJson.description = "(Preview) Develop PowerShell scripts in Visual Studio Code!" + $script:PackageJson.description = "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!" $script:PackageJson.preview = $true } else { $script:PackageJson.name = "powershell" $script:PackageJson.displayName = "PowerShell" - $script:PackageJson.description = "Develop PowerShell scripts in Visual Studio Code!" + $script:PackageJson.description = "Develop PowerShell modules, commands and scripts in Visual Studio Code!" $script:PackageJson.preview = $false }