File tree Expand file tree Collapse file tree 4 files changed +4
-66
lines changed
Expand file tree Collapse file tree 4 files changed +4
-66
lines changed Original file line number Diff line number Diff line change 233233 "title" : " Open PowerShell Extension Logs Folder" ,
234234 "category" : " PowerShell"
235235 },
236- {
237- "command" : " PowerShell.GenerateBugReport" ,
238- "title" : " Upload Bug Report to GitHub" ,
239- "category" : " PowerShell"
240- },
241236 {
242237 "command" : " PowerShell.OpenInISE" ,
243238 "title" : " Open Current File in PowerShell ISE" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ import {
1717 ExternalApiFeature ,
1818 type IPowerShellExtensionClient ,
1919} from "./features/ExternalApi" ;
20- import { GenerateBugReportFeature } from "./features/GenerateBugReport" ;
2120import { GetCommandsFeature } from "./features/GetCommands" ;
2221import { HelpCompletionFeature } from "./features/HelpCompletion" ;
2322import { ISECompatibilityFeature } from "./features/ISECompatibility" ;
@@ -162,7 +161,6 @@ export async function activate(
162161 // Register commands that do not require Language client
163162 commandRegistrations = [
164163 new ExamplesFeature ( ) ,
165- new GenerateBugReportFeature ( sessionManager ) ,
166164 new ISECompatibilityFeature ( ) ,
167165 new OpenInISEFeature ( ) ,
168166 new PesterTestsFeature ( sessionManager , logger ) ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -1270,8 +1270,10 @@ Type 'help' to get help.
12701270 {
12711271 prompt : "Open an Issue" ,
12721272 action : async ( ) : Promise < void > => {
1273- await vscode . commands . executeCommand (
1274- "PowerShell.GenerateBugReport" ,
1273+ await vscode . env . openExternal (
1274+ vscode . Uri . parse (
1275+ "https://github.com/PowerShell/vscode-powershell/issues/new/choose" ,
1276+ ) ,
12751277 ) ;
12761278 } ,
12771279 } ,
You can’t perform that action at this time.
0 commit comments