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/backwards-compatibility/2018-backwards-compatibility.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,17 @@ position: 1
9
9
10
10
# 2018 Releases
11
11
12
+
## Kendo UI R2 2018
13
+
14
+
### Changes from 2018 R1 SP1
15
+
16
+
As of the Kendo UI R2 2018 release, the sample application, which represents an offline version of the [Telerik UI for ASP.NET Core Demos](http://demos.telerik.com/aspnet-core), is only available for Visual Studio 2017. The Visual Studio 2015 version which contains the deprecated `project.json` base version is no longer distributed.
17
+
12
18
## Kendo UI R1 2018 SP1
13
19
14
20
### Changes from 2018 R1
15
21
16
-
To enable more complex widget configuration scenarios and ensure the tag-naming consistency across the Telerik UI for ASP.NET Core suite, the Kendo UI R1 2018 release introduces changes in the tags of the following wrappers:
22
+
To enable more complex scenarios for widget configuration and ensure the tag-naming consistency across the Telerik UI for ASP.NET Core suite, the Kendo UI R1 2018 release introduces changes in the tags of the following wrappers:
17
23
18
24
* Dialog—Previously, it was possible to nest content directly in the `<kendo-dialog>` tag. Now the content must be nested within a `<content>` tag.
19
25
* Window—Previously, it was possible to nest content directly in the `<kendo-window>` tag. Now the content must be nested within a `<content>` tag.
8. Start the application by running [`dotnet run`](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-run). The following example demonstrates the response you are expected to receive.
62
62
@@ -74,16 +74,7 @@ Below are listed the steps for you to follow when creating an ASP.NET Core web s
74
74
75
75
### Add the Telerik.UI.for.AspNet.Core NuGet Package
76
76
77
-
1. Open the `project.json` file by using a text editor, add the `Telerik.UI.for.AspNet.Core` dependency, and replace `productVersion` with an actual **Telerik UI for ASP.NET Core** version—for example, `{{site.cdnVersion}}`.
2. Add the private Telerik NuGet feed. You could either:
77
+
1. Add the private Telerik NuGet feed. You could either:
87
78
88
79
* Create the following two configuration files containing your `telerik.com` credentials on your machine: `~/.config/NuGet/NuGet.Config` and `~/.nuget/NuGet/NuGet.Config`; or
89
80
* Create a `NuGet.Config` file in the project folder.
@@ -108,6 +99,12 @@ Below are listed the steps for you to follow when creating an ASP.NET Core web s
108
99
</configuration>
109
100
```
110
101
102
+
2. Install the `Telerik.UI.for.AspNet.Core` dependency:
103
+
104
+
###### Example
105
+
106
+
dotnet add package Telerik.UI.for.AspNet.Core
107
+
111
108
3. Open `Startup.cs` by using a text editor (IDE) and update it in the way demonstrated in the following examples.
112
109
113
110
* Locate the `ConfigureServices` method and add a call to `services.AddKendo` at the end.
@@ -146,7 +143,7 @@ Below are listed the steps for you to follow when creating an ASP.NET Core web s
146
143
147
144
5. Copy the Kendo UI client-side resources.
148
145
149
-
* Manual installation—To manually install the resources, copy the `js` and `styles` folders from the `telerik.ui.for.aspnetmvc` archive to `wwwroot\lib\kendo-ui`.
146
+
* Manual installation—To manually install the resources, copy the `js` and `styles` folders from the `telerik.ui.for.aspnet.core` archive to `wwwroot\lib\kendo-ui`.
Copy file name to clipboardExpand all lines: docs-aspnet-core/introduction.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,17 +75,19 @@ Telerik UI for ASP.NET Core contains the following directories:
75
75
*`vsdoc`—The intellisense definitions for the Kendo combined scripts (as the above).
76
76
*`VSExtensions`—The extensions for Visual Studio 2015 and 2017.
77
77
*`wrappers\aspnetcore\Binaries\AspNet.Core`—Containing the .nupkg NuGet package file.
78
-
*`wrappers\aspnetcore\Examples\AspNet.Core\VS2015`—The ASP.NET Core sample application built with Visual Studio 2015.
79
78
*`wrappers\aspnetcore\Examples\AspNet.Core\VS2017`—The ASP.NET Core sample application built with Visual Studio 2017.
80
79
*`wrappers\aspnetcore\EditorTemplates\razor`—The ready-to-use editor templates based on the Kendo UI widgets.
81
80
82
81
## Sample Application
83
82
84
83
Telerik UI for ASP.NET Core comes with a sample .NET Core application which is an offline version of the [Telerik UI for ASP.NET Core Demos](http://demos.telerik.com/aspnet-core). The sample application is available in the following versions:
85
84
86
-
* The .NET Core application built with Visual Studio 2015
87
85
* The .NET Core application built with Visual Studio 2017
88
86
87
+
> **Important**
88
+
>
89
+
> As of the Kendo UI R2 2018 release, the Visual Studio 2015 version of the sample application is no longer distributed because of its deprecated format and limited tooling support.
90
+
89
91
### Running the Sample Application
90
92
91
93
To run the sample application:
@@ -94,7 +96,6 @@ To run the sample application:
94
96
95
97
1. Open the sample Visual Studio Project:
96
98
97
-
* (For Visual Studio 2015) Open `wrappers\aspnetcore\Examples\AspNet.Core\VS2015\Kendo.Mvc.Examples\Kendo.Mvc.Examples.xproj`.
98
99
* (For Visual Studio 2017) Open `wrappers\aspnetcore\Examples\AspNet.Core\VS2017\Kendo.Mvc.Examples\Kendo.Mvc.Examples.xproj`.
99
100
100
101
1. Press `CTRL+F5` to build and run the application.
0 commit comments