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 Oct 12, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: pages/tsconfig.json.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -199,7 +199,7 @@ Setting a top-level property `compileOnSave` signals to the IDE to generate all
199
199
}
200
200
```
201
201
202
-
This feature is currently supported in Visual Studio 2015 with TypeScript 1.8.4 and above, and [atom-typescript](https://github.com/TypeStrong/atom-typescript/blob/master/docs/tsconfig.md#compileonsave) plugin.
202
+
This feature is currently supported in Visual Studio 2015 with TypeScript 1.8.4 and above, and [atom-typescript](https://github.com/TypeStrong/atom-typescript#compile-on-save) plugin.
Copy file name to clipboardExpand all lines: pages/tutorials/ASP.NET Core.md
+54-16Lines changed: 54 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,8 @@
1
1
# Setup
2
2
3
-
> Note: Updates for Visual Studio 2017 and the latest version of ASP.NET coming soon!
4
-
5
3
## Install ASP.NET Core and TypeScript
6
4
7
-
First, [install ASP.NET Core](https://get.asp.net) if you need it.
8
-
This quick-start guide uses Visual Studio, which means that you'll need Visual Studio 2015 in order to use ASP.NET Core.
5
+
First, [install ASP.NET Core](https://get.asp.net) if you need it. This quick-start guide requires Visual Studio 2015 or 2017.
9
6
10
7
Next, if your version of Visual Studio does not already have the latest TypeScript, you can [install it](http://www.microsoft.com/en-us/download/details.aspx?id=48593).
11
8
@@ -14,19 +11,20 @@ Next, if your version of Visual Studio does not already have the latest TypeScri
14
11
1. Choose **File**
15
12
2. Choose **New Project** (Ctrl + Shift + N)
16
13
3. Choose **Visual C#**
17
-
4.Choose **ASP.NET Web Application**
14
+
4.For VS2015, choose **ASP.NET Web Application** > **ASP.NET 5 Empty**, and let's uncheck "Host in the cloud" since we're going to run this locally.
18
15
19
-

0 commit comments