Skip to content

Commit f5b2d30

Browse files
authored
Moved the extension building instructions into a separate file. (#1537)
Moved the extension building instructions into a separate file.
1 parent d5af9a1 commit f5b2d30

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## How to build and debug the Microsoft CppTools Extension
2+
3+
These steps will allow you to debug the TypeScript code that is part of the Microsoft CppTools extension for Visual Studio Code.
4+
5+
Prerequisite steps:
6+
* Clone [this](https://github.com/Microsoft/vscode-cpptools) repository.
7+
* Install [npm](https://nodejs.org).
8+
* From a command line, run the following commands from the **Extension** folder in the root of the repository:
9+
* `npm install -g vsce` will install `vsce` globally to create the vsix package.
10+
* `npm install` will install the dependencies needed to build the extension.
11+
* Set an environment variable `CPPTOOLS_DEV=1`.
12+
* This enables the local developer workflow, copying dependencies from the **node_modules** folder.
13+
* Open the **Extension** folder in Visual Studio Code and F5.
14+
* Read the [contributing guidelines](https://github.com/Microsoft/vscode-cpptools/blob/master/CONTRIBUTING.md).

Documentation/Getting started.md renamed to Documentation/Getting started with IntelliSense configuration.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
## How to build and debug the Microsoft CppTools Extension
2-
3-
These steps will allow you to debug the TypeScript code that is part of the Microsoft CppTools extension for Visual Studio Code.
4-
5-
Prerequisite steps:
6-
* Clone [this](https://github.com/Microsoft/vscode-cpptools) repository.
7-
* Install [npm](https://nodejs.org).
8-
* From a command line, run the following commands from the **Extension** folder in the root of the repository:
9-
* `npm install -g vsce` will install `vsce` globally to create the vsix package.
10-
* `npm install` will install the dependencies needed to build the extension.
11-
* Set an environment variable `CPPTOOLS_DEV=1`.
12-
* This enables the local developer workflow, copying dependencies from the **node_modules** folder.
13-
* Open the **Extension** folder in Visual Studio Code and F5.
14-
* Read the [contributing guidelines](https://github.com/Microsoft/vscode-cpptools/blob/master/CONTRIBUTING.md).
151

162
# Configuring includePath for better IntelliSense results
173

0 commit comments

Comments
 (0)