Skip to content

Commit 7f78565

Browse files
Update description to reflect that PowerShell is for more than scripting (#3340)
1 parent c647d37 commit 7f78565

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "2021.4.2",
55
"preview": true,
66
"publisher": "ms-vscode",
7-
"description": "(Preview) Develop PowerShell scripts in Visual Studio Code!",
7+
"description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!",
88
"engines": {
99
"vscode": "^1.52.0"
1010
},

tools/ReleaseTools.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ function Update-Version {
271271
# TODO: Maybe cleanup the replacement logic.
272272
switch ($RepositoryName) {
273273
"vscode-powershell" {
274-
$d = "Develop PowerShell scripts in Visual Studio Code!"
274+
$d = "Develop PowerShell modules, commands and scripts in Visual Studio Code!"
275275
if ($Version.PreReleaseLabel) {
276276
$name = "powershell-preview"
277277
$displayName = "PowerShell Preview"

tools/postReleaseScripts/updateAzureDataStudio.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function NewPowerShellExtensionEntry
104104
extensionId = '35'
105105
extensionName = 'powershell'
106106
displayName = 'PowerShell'
107-
shortDescription = 'Develop PowerShell scripts in Azure Data Studio'
107+
shortDescription = 'Develop PowerShell modules, commands and scripts in Azure Data Studio'
108108
publisher = [ordered]@{
109109
displayName = 'Microsoft'
110110
publisherId = 'Microsoft'

vscode-powershell.build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,12 @@ task UpdatePackageJson {
141141
if ($script:IsPreviewExtension) {
142142
$script:PackageJson.name = "powershell-preview"
143143
$script:PackageJson.displayName = "PowerShell Preview"
144-
$script:PackageJson.description = "(Preview) Develop PowerShell scripts in Visual Studio Code!"
144+
$script:PackageJson.description = "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!"
145145
$script:PackageJson.preview = $true
146146
} else {
147147
$script:PackageJson.name = "powershell"
148148
$script:PackageJson.displayName = "PowerShell"
149-
$script:PackageJson.description = "Develop PowerShell scripts in Visual Studio Code!"
149+
$script:PackageJson.description = "Develop PowerShell modules, commands and scripts in Visual Studio Code!"
150150
$script:PackageJson.preview = $false
151151
}
152152

0 commit comments

Comments
 (0)