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/getting-started-core/installation/nuget-install.md
+36-8Lines changed: 36 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,21 +16,49 @@ Telerik maintains a NuGet Feed for registered users.
16
16
17
17
## The Telerik Private NuGet Feed
18
18
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.
20
20
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.
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.
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:
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.
26
54
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.
> 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.
30
58
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.
32
60
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.
Copy file name to clipboardExpand all lines: docs-aspnet/getting-started-core/prerequisites/json-serialization.md
+8-27Lines changed: 8 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,35 +1,16 @@
1
1
---
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."
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.
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 %})
Copy file name to clipboardExpand all lines: docs-aspnet/getting-started-mvc/installation/nuget-install.md
+36-8Lines changed: 36 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,21 +16,49 @@ Telerik maintains a NuGet Feed for registered users.
16
16
17
17
## The Telerik Private NuGet Feed
18
18
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.
20
20
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.
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.
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:
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.
26
54
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.
> 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.
30
58
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.
32
60
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.
0 commit comments