Skip to content

Commit

Permalink
Update description to reflect that PowerShell is for more than script…
Browse files Browse the repository at this point in the history
…ing (#3340)
  • Loading branch information
potatoqualitee authored May 7, 2021
1 parent c647d37 commit 7f78565
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion tools/ReleaseTools.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tools/postReleaseScripts/updateAzureDataStudio.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions vscode-powershell.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 7f78565

Please sign in to comment.