Skip to content

Commit 2dba318

Browse files
committed
Remove Plaster integration
The project is dormant an longer shipped/signed by Microsoft.
1 parent 1ffa489 commit 2dba318

File tree

3 files changed

+1
-181
lines changed

3 files changed

+1
-181
lines changed

package.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
"activationEvents": [
5656
"onDebugResolve:PowerShell",
5757
"onLanguage:powershell",
58-
"onCommand:PowerShell.NewProjectFromTemplate",
5958
"onCommand:PowerShell.OpenExamplesFolder",
6059
"onCommand:PowerShell.PickPSHostProcess",
6160
"onCommand:PowerShell.PickRunspace",
@@ -276,11 +275,6 @@
276275
"title": "Show Extension Terminal",
277276
"category": "PowerShell"
278277
},
279-
{
280-
"command": "PowerShell.NewProjectFromTemplate",
281-
"title": "Create New Project from Plaster Template",
282-
"category": "PowerShell"
283-
},
284278
{
285279
"command": "PowerShell.RunPesterTestsFromFile",
286280
"title": "Run Pester tests",
@@ -916,7 +910,7 @@
916910
"powershell.developer.bundledModulesPath": {
917911
"type": "string",
918912
"default": "../../PowerShellEditorServices/module",
919-
"markdownDescription": "Specifies an alternative path to the folder containing modules that are bundled with the PowerShell extension, that is: PowerShell Editor Services, PSScriptAnalyzer, Plaster, and PSReadLine. **This setting is only meant for extension developers and requires the extension to be run in development mode!**"
913+
"markdownDescription": "Specifies an alternative path to the folder containing modules that are bundled with the PowerShell extension, that is: PowerShell Editor Services, PSScriptAnalyzer and PSReadLine. **This setting is only meant for extension developers and requires the extension to be run in development mode!**"
920914
},
921915
"powershell.developer.editorServicesLogLevel": {
922916
"type": "string",

src/extension.ts

-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import { GenerateBugReportFeature } from "./features/GenerateBugReport";
1515
import { GetCommandsFeature } from "./features/GetCommands";
1616
import { HelpCompletionFeature } from "./features/HelpCompletion";
1717
import { ISECompatibilityFeature } from "./features/ISECompatibility";
18-
import { NewFileOrProjectFeature } from "./features/NewFileOrProject";
1918
import { OpenInISEFeature } from "./features/OpenInISE";
2019
import { PesterTestsFeature } from "./features/PesterTests";
2120
import { RemoteFilesFeature } from "./features/RemoteFiles";
@@ -149,7 +148,6 @@ export async function activate(context: vscode.ExtensionContext): Promise<IPower
149148
new GetCommandsFeature(),
150149
new ShowHelpFeature(),
151150
new ExtensionCommandsFeature(logger),
152-
new NewFileOrProjectFeature(logger),
153151
new RemoteFilesFeature(),
154152
new DebugSessionFeature(context, sessionManager, logger),
155153
new HelpCompletionFeature(),

src/features/NewFileOrProject.ts

-172
This file was deleted.

0 commit comments

Comments
 (0)