You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Ignore] Update troubleshooting.md and associated docs (#1541)
* Update and restructure README.md
* Update troubleshooting.md
* Info on opening an issue
* Update README to point at troubleshooting doc
* Update bug template to point to troubleshooting.md
* Suggest recording a GIF of bugs
* Use pasteable version expression in bug report
If you're having trouble with the PowerShell extension, please follow these instructions
94
-
to file an issue on our GitHub repository:
95
-
96
-
### 1. File an issue on our [Issues Page](https://github.com/PowerShell/vscode-powershell/issues)
97
-
98
-
Make sure to fill in the information that is requested in the issue template as it
99
-
will help us investigate the problem more quickly.
100
-
101
-
To automatically create a bug report from within the extension, open the Command pallet (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd>) and run the *"Report a problem on GitHub"* command. Some basic information about your instance and powershell versions will be collected and inserted into a new GitHub issue.
102
-
103
-
NOTE: If you believe that there is a security vulnerability in the PowerShell extension for VSCode,
104
-
it **must** be reported to [[email protected]](https://technet.microsoft.com/security/ff852094.aspx) to allow for [Coordinated Vulnerability Disclosure](https://technet.microsoft.com/security/dn467923).
105
-
**Only** file an issue, if [email protected] has confirmed filing an issue is appropriate.
106
-
107
-
### 2. Capture verbose logs and send them to us
108
-
109
-
If you're having an issue with crashing or other erratic behavior, add the following
-**Linux and macOS**: `~/.vscode/extensions/ms-vscode.PowerShell-<CURRENT VERSION>/logs`
121
-
122
-
Alternatively, you can open the log folder using the Command pallet (<kbd>Ctrl</kbd>/<kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd>) and running the *"Open powerShell Extension Logs Folder"* command.
123
-
124
-
You have two options for sending us the logs:
125
-
126
-
1. If you are editing scripts that contain sensitive information (intellectual property,
127
-
deployment or administrative information, etc), e-mail the logs directly to
Copy file name to clipboardExpand all lines: docs/development.md
+11-8
Original file line number
Diff line number
Diff line change
@@ -5,25 +5,28 @@
5
5
You'll need to clone two repositories and set up your development environment
6
6
to before you can proceed.
7
7
8
-
### 1. [Fork and clone](https://help.github.com/articles/fork-a-repo/) the [vscode-powershell repository](https://github.com/PowerShell/vscode-powershell)
8
+
1.[Fork and clone](https://help.github.com/articles/fork-a-repo/) the [vscode-powershell repository](https://github.com/PowerShell/vscode-powershell)
9
9
10
-
### 2. [Fork and clone](https://help.github.com/articles/fork-a-repo/) the [PowerShell Editor Services repository](https://github.com/PowerShell/PowerShellEditorServices)
10
+
2.[Fork and clone](https://help.github.com/articles/fork-a-repo/) the [PowerShell Editor Services repository](https://github.com/PowerShell/PowerShellEditorServices)
11
11
12
-
### 3. Follow the [development instructions](https://github.com/PowerShell/PowerShellEditorServices#development) for PowerShell Editor Services
12
+
3. Follow the [development instructions](https://github.com/PowerShell/PowerShellEditorServices#development) for PowerShell Editor Services. **You will need to complete this step before proceeding**.
13
13
14
-
### 4. Install [Visual Studio Code Insiders Release](https://code.visualstudio.com/insiders)
14
+
4. Install the latest [Visual Studio Code Insiders release](https://code.visualstudio.com/insiders)
15
+
- You can also use the [standard Visual Studio Code release](https://code.visualstudio.com/). Both will work, but using VSCode
16
+
Insiders means the extension can be developed ready for new features
17
+
and changes in the next VSCode release.
15
18
16
-
### 5. Install [Node.js](https://nodejs.org/en/) 6.0.0 or higher.
19
+
5. Install [Node.js](https://nodejs.org/en/) 6.0.0 or higher.
17
20
18
21
## Building the Code
19
22
20
23
#### From Visual Studio Code:
21
24
22
-
Press <kbd>Ctrl+P</kbd> and type `task build`
25
+
Press <kbd>Ctrl</kbd>+<kbd>P</kbd> and type `task build`
23
26
24
27
This will compile the TypeScript files in the project to JavaScript files.
25
28
26
-
#### From a command prompt:
29
+
#### From a PowerShell prompt:
27
30
28
31
```
29
32
Invoke-Build Build
@@ -34,7 +37,7 @@ Invoke-Build Build
34
37
#### From Visual Studio Code:
35
38
36
39
To debug the extension, press <kbd>F5</kbd>. To run the extension without debugging,
37
-
press <kbd>Ctrl+F5</kbd> or <kbd>Cmd+F5</kbd> on macOS.
40
+
press <kbd>Ctrl</kbd>+<kbd>F5</kbd> or <kbd>Cmd</kbd>+<kbd>F5</kbd> on macOS.
0 commit comments