Skip to content

Create new ReleaseTools module #3265

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions build/InstallPreview.ps1

This file was deleted.

43 changes: 0 additions & 43 deletions build/PackagePreviewRelease.ps1

This file was deleted.

9 changes: 8 additions & 1 deletion extension-dev.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
"**/snippets/*.json": "jsonc",
"**/.vsts-ci/**/*.yml": "azure-pipelines",
},
"typescript.tsdk": "./node_modules/typescript/lib"
"typescript.tsdk": "./node_modules/typescript/lib",
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.newLineAfterCloseBrace": false,
"powershell.codeFormatting.trimWhitespaceAroundPipe": true,
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": false,
"powershell.codeFormatting.whitespaceBetweenParameters": true,
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline"
}
}
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"Snippets",
"Linters"
],
"icon": "images/PowerShell_icon.png",
"icon": "media/PowerShell_icon.png",
"galleryBanner": {
"color": "#ACD1EC",
"theme": "light"
Expand Down Expand Up @@ -156,17 +156,17 @@
"command": "PowerShell.RefreshCommandsExplorer",
"title": "Refresh Command Explorer",
"icon": {
"light": "resources/light/sync.svg",
"dark": "resources/dark/sync.svg"
"light": "media/resources/light/sync.svg",
"dark": "media/resources/dark/sync.svg"
},
"category": "PowerShell"
},
{
"command": "PowerShell.InsertCommand",
"title": "Insert Command",
"icon": {
"light": "resources/light/pencil.svg",
"dark": "resources/dark/pencil.svg"
"light": "media/resources/light/pencil.svg",
"dark": "media/resources/dark/pencil.svg"
},
"category": "PowerShell"
},
Expand All @@ -179,8 +179,8 @@
"command": "PowerShell.ShowHelp",
"title": "Get Help for Command",
"icon": {
"light": "resources/light/question.svg",
"dark": "resources/dark/question.svg"
"light": "media/resources/light/question.svg",
"dark": "media/resources/dark/question.svg"
},
"category": "PowerShell"
},
Expand All @@ -189,17 +189,17 @@
"title": "Run",
"category": "PowerShell",
"icon": {
"light": "resources/light/run.svg",
"dark": "resources/dark/run.svg"
"light": "media/resources/light/run.svg",
"dark": "media/resources/dark/run.svg"
}
},
{
"command": "PowerShell.RunSelection",
"title": "Run Selection",
"category": "PowerShell",
"icon": {
"light": "resources/light/play.svg",
"dark": "resources/dark/play.svg"
"light": "media/resources/light/play.svg",
"dark": "media/resources/dark/play.svg"
}
},
{
Expand Down Expand Up @@ -277,26 +277,26 @@
"title": "Close panel",
"category": "PowerShell",
"icon": {
"light": "resources/light/ClosePanel.svg",
"dark": "resources/dark/ClosePanel.svg"
"light": "media/resources/light/ClosePanel.svg",
"dark": "media/resources/dark/ClosePanel.svg"
}
},
{
"command": "workbench.action.positionPanelLeft",
"title": "Move panel left",
"category": "PowerShell",
"icon": {
"light": "resources/light/MovePanelLeft.svg",
"dark": "resources/dark/MovePanelLeft.svg"
"light": "media/resources/light/MovePanelLeft.svg",
"dark": "media/resources/dark/MovePanelLeft.svg"
}
},
{
"command": "workbench.action.positionPanelBottom",
"title": "Move panel to bottom",
"category": "PowerShell",
"icon": {
"light": "resources/light/MovePanelBottom.svg",
"dark": "resources/dark/MovePanelBottom.svg"
"light": "media/resources/light/MovePanelBottom.svg",
"dark": "media/resources/dark/MovePanelBottom.svg"
}
},
{
Expand Down
Loading