Skip to content

Commit 3325572

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 1b23f72 commit 3325572

File tree

13 files changed

+205
-55
lines changed

13 files changed

+205
-55
lines changed

docs-aspnet/getting-started-core/first-steps-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Install the appropriate [.Net Core SDK 2.0 or later](https://www.microsoft.com/n
142142
143143
## Next Steps
144144
145-
* [Use data-bound widgets]({% slug environmentsupport_core %}#json-serialization)
145+
* [Use data-bound widgets]({% slug json_serialization %})
146146
* [Ways to download and install UI for ASP.NET Core (overview)]({% slug downloadinstall_aspnetcore %})
147147
* [Create your own custom bundles]({% slug custombundles_core %})
148148
* [Explore the helper script dependencies]({% slug script_filesfor_barcodes_widgets %})

docs-aspnet/getting-started-core/first-steps-vs-mac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ To get up and running with the project:
108108

109109
## Next Steps
110110

111-
* [Use data-bound widgets]({% slug environmentsupport_core %}#json-serialization)
111+
* [Use data-bound widgets]({% slug json_serialization %})
112112
* [Ways to download and install UI for ASP.NET Core (overview)]({% slug downloadinstall_aspnetcore %})
113113
* [Create your own custom bundles]({% slug custombundles_core %})
114114
* [Explore the helper script dependencies]({% slug script_filesfor_barcodes_widgets %})

docs-aspnet/getting-started-core/first-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Follow the instructions from the [official .NET Core documentation site](https:/
123123

124124
## Next Steps
125125

126-
* [Use data-bound widgets]({% slug environmentsupport_core %}#json-serialization)
126+
* [Use data-bound widgets]({% slug json_serialization %})
127127
* [Ways to download and install UI for ASP.NET Core (overview)]({% slug downloadinstall_aspnetcore %})
128128
* [Create your own custom bundles]({% slug custombundles_core %})
129129
* [Explore the helper script dependencies]({% slug script_filesfor_barcodes_widgets %})

docs-aspnet/getting-started-core/installation/nuget-install.md

Lines changed: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,49 @@ Telerik maintains a NuGet Feed for registered users.
1616

1717
## The Telerik Private NuGet Feed
1818

19-
To use the Telerik NuGet Feed as a Package Source, use the [NuGet CLI](http://docs.nuget.org/consume/Command-Line-Reference). As of now, Visual Studio does not provide a UI for configuring authenticated NuGet feeds.
19+
To use the Telerik NuGet Feed as a Package Source, use the [NuGet CLI](http://docs.nuget.org/consume/Command-Line-Reference). Or, use the UI provided from Visual Studio for configuring authenticated NuGet feeds.
2020

21-
### Setting Up the NuGet Package Source
21+
The following video explains how you can add the Telerik NuGet feed. If you prefer to do this yourself, follow the rest of this article.
22+
23+
<iframe width="560" height="315" src="https://www.youtube.com/embed/c3m_BLMXNDk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
24+
25+
### Setup with NuGet CLI
2226

2327
1. Download the [latest NuGet executable](https://dist.nuget.org/win-x86-commandline/latest/nuget.exe).
24-
1. Open a command prompt and change the path to where the `nuget.exe` is downloaded.
25-
1. Depending on your scenario, execute the following commands respectively.
28+
1. Open a command prompt and change the path to where the `nuget.exe` is downloaded.
29+
1. The command from the example below stores a token in the `%AppData%\NuGet\NuGet.config` file. Your original credentials cannot be obtained from this token.
30+
31+
```
32+
NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password"
33+
```
34+
35+
If you are unable to connect to the feed by using encrypted credentials, try the alternative approach of storing credentials in clear text.
36+
37+
```
38+
NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password" -StorePasswordInClearText
39+
```
40+
41+
If you have already stored a token instead of storing the credentials as clear text, you could update the definition in the `%AppData%\NuGet\NuGet.config` file using the following command:
42+
43+
```
44+
NuGet Sources Update -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password" -StorePasswordInClearText
45+
```
46+
47+
### Setup with NuGet Package Manager
48+
49+
1. Open Visual Studio.
50+
51+
1. Go to **Tools > NuGet Package Manager > Package Manager Settings**, select Package Manager Sources and then click the + button.
52+
53+
1. Choose feed Name, set the feed URL to: https://nuget.telerik.com/nuget and click OK.
2654
27-
* To store encrypted credentials, use the `NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password"` command. As a result, a token is stored in the `%AppData%\NuGet\NuGet.config` file. Your original credentials cannot be obtained from this token.
55+
![Kendo UI resources](../../getting-started-core/images/add-nuget-source.png)
2856
29-
> If you are unable to connect to the feed by using encrypted credentials, try the alternative approach of storing credentials in clear text.
57+
1. Choose the `Browse` list of packages.
3058
31-
* To store credentials in clear text, use the `NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password" -StorePasswordInClearText` command. As a result, the password is stored in clear text in the `%AppData%\NuGet\NuGet.config` file. If you are unable to connect to the feed using encrypted credentials, use this alternative approach.
59+
1. Enter your Telerik credentials in the Windows Authentication dialog.
3260
33-
If you have already stored a token instead of storing the credentials as clear text, update the definition in the `%AppData%\NuGet\NuGet.config` file by using the `NuGet Sources Update -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password" -StorePasswordInClearText` command.
61+
1. All of the packages that are licensed to the user account are available in Visual Studio Package Manager.
3462
3563
### Installing the NuGet Packages
3664

docs-aspnet/getting-started-core/prerequisites/environment-support.md renamed to docs-aspnet/getting-started-core/prerequisites/json-serialization.md

Lines changed: 8 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,16 @@
11
---
2-
title: Environment Specifics
3-
page_title: Environment Specifics
4-
description: "Learn about IDE or framework specifics while working with Progress Telerik UI for ASP.NET Core (aka MVC 6 or ASP.NET Core MVC) and Visual Studio."
5-
slug: environmentsupport_core
2+
title: JSON Serialization
3+
page_title: JSON Serialization
4+
description: "How to configure JSON Serialization when working with Grid and other data-bound widgets."
5+
previous_url: /getting-started/prerequisites/environment-support
6+
slug: json_serialization
67
position: 1
7-
permalink: /getting-started/prerequisites/environment-support
8+
permalink: /getting-started/prerequisites/json-serialization
89
---
910

10-
# Environment Specifics
11+
# Overview
1112

12-
If you use Visual Studio 2015 or when you serialize data in JSON format in .Net Core version 2 or 3, note some specific environment issues that may occur.
13-
14-
## VS 2015 Support
15-
16-
You can use Visual Studio 2015 only for .NET Core 1.x development. However, this is not recommended because:
17-
* The .NET Core tooling is in a preview version which is not officially supported.
18-
* The projects are `project.json`-based which is deprecated.
19-
20-
In VS 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`.
21-
22-
If you are new to ASP.NET Core and are experiencing any compatibility issues, check [this issue](https://github.com/dotnet/sdk/issues/3124) from the `dotnet/sdk` repository and the compatibility matrix.
23-
24-
If you are using a VS 2015 version prior to R2 2018, locate the `Configure` method and add a call to `app.UseKendo` at the end.
25-
26-
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
27-
{
28-
...
29-
30-
//If using versions older than R2 2018, configure Kendo UI
31-
app.UseKendo(env);
32-
}
13+
When you use Grid or other data-bound widgets in your code, make sure that the property name casing doesn't change during serialization. This document describes the recommended approaches.
3314

3415
## JSON Serialization
3516

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: Visual Studio 2015 Support
3+
page_title: Visual Studio 2015 Support
4+
description: "Learn about the Visual Studio 2015 specifics related to the Progress Telerik UI for ASP.NET Core."
5+
slug: vs2015support_core
6+
position: 7
7+
permalink: /getting-started/prerequisites/vs-2015-support
8+
---
9+
10+
## Overview
11+
12+
To enjoy the full functionality of the Telerik UI for ASP.NET Core, we recommend the latest Visual Studio version. Read further if you would like to learn more about the VS 2015 specifics.
13+
14+
## VS 2015 Support
15+
16+
You can use Visual Studio 2015 only for .NET Core 1.x development. However, this is not recommended because:
17+
* The .NET Core tooling is in a preview version which is not officially supported.
18+
* The projects are `project.json`-based which is deprecated.
19+
20+
In VS 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`.
21+
22+
If you are new to ASP.NET Core and are experiencing any compatibility issues, check [this issue](https://github.com/dotnet/sdk/issues/3124) from the `dotnet/sdk` repository and the compatibility matrix.
23+
24+
If you are using a VS 2015 version prior to R2 2018, locate the `Configure` method and add a call to `app.UseKendo` at the end.
25+
26+
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
27+
{
28+
...
29+
30+
//If using versions older than R2 2018, configure Kendo UI
31+
app.UseKendo(env);
32+
}
33+
34+
## See Also
35+
36+
* [Visual Studio Support by Telerik UI for ASP.NET Core]({% slug visualstudiosupport_core %})
37+
* [PDF and Excel Export Support by Telerik UI for ASP.NET Core]({% slug exportsupport_core %})
38+
* [Operation System Support by Telerik UI for ASP.NET Core]({% slug ossupport_core %})
39+
* [Earlier Versions Support Policy by Telerik UI for ASP.NET Core]({% slug oldversionssupportpolicy_core %})
49.9 KB
Loading

docs-aspnet/getting-started-mvc/installation/nuget-install.md

Lines changed: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,49 @@ Telerik maintains a NuGet Feed for registered users.
1616

1717
## The Telerik Private NuGet Feed
1818

19-
To use the Telerik NuGet Feed as a Package Source, use the [NuGet CLI](http://docs.nuget.org/consume/Command-Line-Reference). As of now, Visual Studio does not provide a UI for configuring authenticated NuGet feeds.
19+
To use the Telerik NuGet Feed as a Package Source, use the [NuGet CLI](http://docs.nuget.org/consume/Command-Line-Reference). Or, use the UI provided from Visual Studio for configuring authenticated NuGet feeds.
2020

21-
### Setting Up the NuGet Package Source
21+
The following video explains how you can add the Telerik NuGet feed. If you prefer to do this yourself, follow the rest of this article.
22+
23+
<iframe width="560" height="315" src="https://www.youtube.com/embed/c3m_BLMXNDk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
24+
25+
### Setup with NuGet CLI
2226

2327
1. Download the [latest NuGet executable](https://dist.nuget.org/win-x86-commandline/latest/nuget.exe).
24-
1. Open a command prompt and change the path to where the `nuget.exe` is downloaded.
25-
1. Depending on your scenario, execute the following commands respectively.
28+
1. Open a command prompt and change the path to where the `nuget.exe` is downloaded.
29+
1. The command from the example below stores a token in the `%AppData%\NuGet\NuGet.config` file. Your original credentials cannot be obtained from this token.
30+
31+
```
32+
NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password"
33+
```
34+
35+
If you are unable to connect to the feed by using encrypted credentials, try the alternative approach of storing credentials in clear text.
36+
37+
```
38+
NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password" -StorePasswordInClearText
39+
```
40+
41+
If you have already stored a token instead of storing the credentials as clear text, you could update the definition in the `%AppData%\NuGet\NuGet.config` file using the following command:
42+
43+
```
44+
NuGet Sources Update -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password" -StorePasswordInClearText
45+
```
46+
47+
### Setup with NuGet Package Manager
48+
49+
1. Open Visual Studio.
50+
51+
1. Go to **Tools > NuGet Package Manager > Package Manager Settings**, select Package Manager Sources and then click the + button.
52+
53+
1. Choose feed Name, set the feed URL to: https://nuget.telerik.com/nuget and click OK.
2654
27-
* To store encrypted credentials, use the `NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password"` command. As a result, a token is stored in the `%AppData%\NuGet\NuGet.config` file. Your original credentials cannot be obtained from this token.
55+
![Kendo UI resources](../../getting-started-mvc/images/add-nuget-source.png)
2856
29-
> If you are unable to connect to the feed by using encrypted credentials, try the alternative approach of storing credentials in clear text.
57+
1. Choose the `Browse` list of packages.
3058
31-
* To store credentials in clear text, use the `NuGet Sources Add -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password" -StorePasswordInClearText` command. As a result, the password is stored in clear text in the `%AppData%\NuGet\NuGet.config` file. If you are unable to connect to the feed using encrypted credentials, use this alternative approach.
59+
1. Enter your Telerik credentials in the Windows Authentication dialog.
3260
33-
If you have already stored a token instead of storing the credentials as clear text, update the definition in the `%AppData%\NuGet\NuGet.config` file by using the `NuGet Sources Update -Name "telerik.com" -Source "https://nuget.telerik.com/nuget" -UserName "your login email" -Password "your password" -StorePasswordInClearText` command.
61+
1. All of the packages that are licensed to the user account are available in Visual Studio Package Manager.
3462
3563
### Installing the NuGet Packages
3664
64.7 KB
Loading
36.5 KB
Loading

0 commit comments

Comments
 (0)