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
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
**Verify that you are running node version `4.6.x` or greater, and npm `3.x.x` or greater**
48
-
by running `node -v` and `npm -v` in a terminal/console window.
48
+
by running `node -v` and `npm -v` in a terminal window.
49
49
Older versions produce errors.
50
50
51
51
.l-main-section
@@ -63,29 +63,30 @@ h2#prereq3 Prerequisite: Configure External Web tools
63
63
:marked
64
64
Configure Visual Studio to use the global external web tools instead of the tools that ship with Visual Studio:
65
65
66
-
* Open the **Options** dialog with `Tools` | `Options`
66
+
* Open the **Options** dialog with `Tools` | `Options`.
67
67
* In the tree on the left, select `Projects and Solutions` | `External Web Tools`.
68
68
* On the right, move the `$(PATH)` entry above the `$(DevEnvDir`) entries. This tells Visual Studio to
69
69
use the external tools (such as npm) found in the global path before using its own version of the external tools.
70
70
* Click OK to close the dialog.
71
71
* Restart Visual Studio for this change to take effect.
72
72
73
-
Visual Studio will now look first for external tools in the current workspace and
74
-
if not found then look in the global path and if it is not found there, Visual Studio
75
-
will use its own versions of the tools.
73
+
Visual Studio now looks first for external tools in the current workspace and
74
+
if it doesn't find them, it looks in the global path. If Visual Studio doesn't
75
+
find them in either location, it will use its own versions of the tools.
76
76
77
77
.l-main-section
78
-
h2#prereq4 Prerequisite: Install TypeScript 2 for Visual Studio 2015
78
+
h2#prereq4 Prerequisite: Install TypeScript 2.2 for Visual Studio 2015
79
79
:marked
80
-
While Visual Studio Update 3 ships with TypeScript support out of the box, it currently doesn’t ship with TypeScript 2,
80
+
While Visual Studio Update 3 ships with TypeScript support out of the box, it currently doesn’t ship with TypeScript 2.2,
81
81
which you need to develop Angular applications.
82
82
83
-
To install TypeScript 2:
83
+
To install TypeScript 2.2:
84
+
85
+
* Download and install **[TypeScript 2.2 for Visual Studio 2015](https://www.microsoft.com/en-us/download/details.aspx?id=48593)**
84
86
85
-
* Download and install **[TypeScript 2.0 for Visual Studio 2015](http://download.microsoft.com/download/6/D/8/6D8381B0-03C1-4BD2-AE65-30FF0A4C62DA/TS2.0.3-TS-release20-nightly-20160921.1/TypeScript_Dev14Full.exe)**
You can find out more about TypeScript 2 support in Visual studio **[here](https://blogs.msdn.microsoft.com/typescript/2016/09/22/announcing-typescript-2-0/)**
89
+
You can find out more about TypeScript 2.2 support in Visual studio **[here](https://blogs.msdn.microsoft.com/typescript/2017/02/22/announcing-typescript-2-2/)**.
89
90
90
91
At this point, Visual Studio is ready. It’s a good idea to close Visual Studio and
91
92
restart it to make sure everything is clean.
@@ -94,7 +95,7 @@ h2#prereq4 Prerequisite: Install TypeScript 2 for Visual Studio 2015
94
95
h2#download Step 1: Download the QuickStart files
95
96
:marked
96
97
[Download the QuickStart source](https://github.com/angular/quickstart)
97
-
from github. If you downloaded as a zip file, extract the files.
98
+
from GitHub. If you downloaded as a zip file, extract the files.
98
99
99
100
.l-main-section
100
101
h2#create-project Step 2: Create the Visual Studio ASP.NET project
@@ -109,25 +110,25 @@ h2#create-project Step 2: Create the Visual Studio ASP.NET project
109
110
110
111
.l-sub-section
111
112
:marked
112
-
In this cookbook we'll select the `Empty` template with no added folders,
113
-
no authentication and no hosting. Pick the template and options appropriate for your project.
113
+
This cookbook uses the `Empty` template with no added folders,
114
+
no authentication, and no hosting. Pick the template and options appropriate for your project.
114
115
115
116
.l-main-section
116
117
h2#copy Step 3: Copy the QuickStart files into the ASP.NET project folder
117
118
118
119
:marked
119
-
Copy the QuickStart files we downloaded from github into the folder containing the `.csproj` file.
120
+
Copy the QuickStart files you downloaded from GitHub into the folder containing the `.csproj` file.
120
121
Include the files in the Visual Studio project as follows:
121
122
122
123
* Click the `Show All Files` button in Solution Explorer to reveal all of the hidden files in the project.
123
124
* Right-click on each folder/file to be included in the project and select `Include in Project`.
124
125
Minimally, include the following folder/files:
125
-
126
-
* app folder (answer *No* if asked to search for TypeScript Typings)
127
-
* styles.css
128
-
* index.html
126
+
127
+
* src/app folder (answer *No* if asked to search for TypeScript Typings)
0 commit comments