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
Copy file name to clipboardExpand all lines: docs-aspnet-core/getting-started/getting-started.md
+16-17Lines changed: 16 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,20 +9,19 @@ position: 1
9
9
10
10
# Getting Started with Progress<sup>®</sup> Telerik<sup>®</sup> UI for ASP.NET Core
11
11
12
-
This article demonstrates how to configure an ASP.NET Core project to use Telerik UI for ASP.NET Core in Visual Studio 2017.
12
+
This article demonstrates how to configure an ASP.NET Core project to use Telerik UI for ASP.NET Core in Visual Studio (VS) 2017.
13
13
14
14
## Prerequisites
15
15
16
-
The prerequisites for creating and running an ASP.NET Core on Windows with Visual Studio 2017 are described on the [.NET Core documentation site](https://docs.microsoft.com/en-us/dotnet/core/windows-prerequisites).
16
+
The prerequisites for creating and running an ASP.NET Core on Windows with VS 2017 are described on the [.NET Core documentation site](https://docs.microsoft.com/en-us/dotnet/core/windows-prerequisites).
17
17
18
18
> **Important**
19
19
>
20
-
> It's possible to use Visual Studio 2015 only for .NET Core 1.x development, but it's not recommended for the following reasons:
20
+
> You can use Visual Studio 2015 only for .NET Core 1.x development. However, this approach is not recommended because:
21
+
> * The .NET Core tooling is in a preview version which is not officially supported.
22
+
> * The projects are `project.json`-based which is deprecated.
21
23
>
22
-
> * The .NET Core tooling is a preview version, which is not officially supported.
23
-
> * The projects are project.json-based, which is deprecated.
24
-
>
25
-
> Note also, that if you use VS 2015, in order to ensure the matching of the ASP.NET Core version which is distributed with the Telerik UI for ASP.NET Core, you need to manually change the `Microsoft.AspNetCore.Routing` and `Microsoft.AspNetCore.Mvc` versions to `1.1.0` in `project.json`.
24
+
> If you use Visual Studio 2015, to ensure the matching of the ASP.NET Core version which is distributed with the Telerik UI for ASP.NET Core, manually change the `Microsoft.AspNetCore.Routing` and `Microsoft.AspNetCore.Mvc` versions to `1.1.0` in `project.json`.
26
25
27
26
## Configuration
28
27
@@ -34,7 +33,7 @@ Configure an ASP.NET Core Web Application to use Telerik UI for ASP.NET Core:
options.SerializerSettings.ContractResolver = new DefaultContractResolver());
79
78
80
79
// Add Kendo UI services to the services container
81
80
services.AddKendo();
82
81
}
83
-
84
-
* Add the required using for `Newtonsoft.Json.Serialization`:
85
-
82
+
83
+
* Add the required `using Newtonsoft.Json.Serialization` line.
84
+
86
85
###### Example
87
86
88
87
...
@@ -121,7 +120,7 @@ To add the NuGet packages:
121
120
122
121
7. Register the Kendo UI styles and scripts in `~/Views/Shared/_Layout.cshtml`.
123
122
124
-
> **Important**
123
+
> **Important**
125
124
>
126
125
> In the default .NET Core template, the jQuery scripts are included at the end of the `<body>` element. To properly load the Telerik UI for ASP.NET HtmlHelpers, move the jQuery scripts and the Kendo UI client-side scripts to the `<head>` element and make sure that the Kendo UI scripts are loaded after the jQuery ones.
0 commit comments