Skip to content

Commit 45691c5

Browse files
committed
Sync with Kendo UI Professional
1 parent 308e568 commit 45691c5

File tree

9 files changed

+27
-139
lines changed

9 files changed

+27
-139
lines changed

docs-aspnet/_config-mvc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ bs-config.js,
1414
build-docs.sh,
1515
copy_content.sh,
1616
copy_local.sh,
17-
deployment/*,
1817
docs-watcher/*,
1918
exclude_files.txt,
2019
install-npm.sh,
@@ -63,7 +62,6 @@ knowledge-base/grid-toolbar-template.md,
6362
knowledge-base/invalid-template-error-when-using-localization.md,
6463
knowledge-base/multiselect-post-data-values.md,
6564
knowledge-base/scheduler-sql-server-database.md,
66-
knowledge-base/setup-private-nuget-feed-azure.md,
6765
knowledge-base/treelist-checkbox-column.md,
6866
knowledge-base/upload-resize-image-before-upload.md,
6967
knowledge-base/validator-basic-form-validation.md,

docs-aspnet/deployment/ci-cd-build-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ When using Azure pipelines, we encourage you to review the following resource on
5252

5353
* That Service Connection is selected as the credentials source.
5454

55-
* The credentials being used have a UI for ASP.NET Core license.
55+
* The credentials being used have a {{ site.product_short }} license.
5656

5757
* Make sure that you use `dotnet restore` and not `nuget restore` in your pipeline step.
5858

docs-aspnet/deployment/nuget-keys.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Restoring NuGet Packages in CI
33
page_title: Restoring NuGet Packages in CI
44
description: "Get started with {{ site.product }} and use NuGet Keys to authenticate with the Telerik NuGet server and restore packages in your CI or desktop environment."
5+
previous_url: /installation/nuget-keys
56
slug: nuget_keys
67
position: 10
78
---
@@ -55,7 +56,7 @@ There are two popular ways to use the Telerik NuGet server in a build:
5556

5657
* [Using a nuget.config file with your projects](#using-a-nugetconfig-file-with-your-projects)
5758

58-
* [Using only CLI commands](#using-only-cli-commands)
59+
* [Using only CLI commands](#using-only-cli-commands) (requires .NET Core 3.1 SDK or newer)
5960

6061
For more information on how to use NuGet keys in a build, check the [Announcing NuGet Keys](https://www.telerik.com/blogs/announcing-nuget-keys) blog post by Lance McCarthy.
6162

@@ -86,7 +87,7 @@ The exact steps to set the `MY_API_KEY` environment variable depend on your work
8687

8788
### Using Only CLI Commands
8889

89-
You can use the CLI `add source` (or `update source`) command to set the credentials of a package source. This CLI approach is applicable if your CI system doesn't support default environment variable secrets or if you do not use a custom `nuget.config`.
90+
You can use the CLI `add source` (or `update source`) command to set the credentials of a package source. This CLI approach is applicable if your CI system doesn't support default environment variable secrets or if you do not use a custom `nuget.config`. Using the CLI requires installing .NET Core 3.1 SDK or newer.
9091

9192
* To set the credentials in Azure DevOps:
9293

@@ -110,8 +111,8 @@ If you just start using the Telerik NuGet server in your CI or inter-department
110111

111112
## See Also
112113

113-
* [Set Up Private NuGet Feed for Azure](https://docs.telerik.com/aspnet-core/knowledge-base/setup-private-nuget-feed-azure)
114+
* [Set Up Private NuGet Feed for Azure](https://docs.telerik.com/{{ site.platform }}/knowledge-base/setup-private-nuget-feed-azure)
114115

115116
* [Including Client-Side Resources]({% slug copyclientresources_aspnetmvc6_aspnetmvc %})
116117

117-
* [Scaffolding the Telerik UI for ASP.NET Core Project]({% slug scaffolding_aspnetcore %})
118+
* [Scaffolding the {{ site.product }} Project]({% slug scaffolding_aspnetcore %})

docs-aspnet/deployment/overview.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Overview
33
page_title: Deployment Overview
4-
description: Troubleshooting deployment issues involving the UI for ASP.NET Core suite.
4+
description: Troubleshooting deployment issues involving the {{ site.product_short }} suite.
55
slug: deployment_overview
66
position: 0
77
---
88

99
# {{ site.product }} Deployment Overview
1010

11-
This article explains the basics about deploying a UI for ASP.NET Core web application. It consists of the following sections:
11+
This article explains the basics about deploying a {{ site.product_short }} web application. It consists of the following sections:
1212

1313

1414
* [Prerequisites](#prerequisites)
@@ -20,14 +20,17 @@ This article explains the basics about deploying a UI for ASP.NET Core web appli
2020

2121
First, make sure you can deploy an ASP.NET Core application without the Telerik components in order to have the entire pipeline working as a baseline.
2222

23-
You can read more about deploying ASP.NET Core applications in MSDN - make sure that you are familiar with this information, as the Telerik UI for ASP.NET Core suite does not add any specific requirements or steps:
24-
25-
* [Host and deploy ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/?view=aspnetcore-5.0)
23+
You can read more about deploying {{ site.framework }} applications in MSDN - make sure that you are familiar with this information, as the {{ site.product }} suite does not add any specific requirements or steps:
2624

25+
{% if site.core %}
26+
* [Host and deploy ASP.NET Core](https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/?view=aspnetcore-9.0)
27+
{% else %}
28+
* [Host and deploy ASP.NET MVC](https://learn.microsoft.com/en-us/aspnet/mvc/overview/deployment/)
29+
{% endif %}
2730

2831
## Telerik Components
2932

30-
The Telerik UI for ASP.NET Core components consist of:
33+
The {{ site.product }} components consist of:
3134
* assembly - it is distributed through [NuGet]({%slug nuget_install_aspnetmvc6_aspnetmvc%}). You could find the list with the packages related to UI for ASP.NET Core [here]({% slug nuget_install_aspnetmvc6_aspnetmvc%}#list-of-provided-packages)
3235
* [client-side resources]({%slug copyclientresources_aspnetmvc6_aspnetmvc%}) - the required JavaScript and CSS files needed to run the components
3336

docs-aspnet/deployment/troubleshooting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
22
title: Deployment Troubleshooting
33
page_title: Deployment Troubleshooting
4-
description: Troubleshooting deployment issues involving the UI for ASP.NET Core suite.
4+
description: Troubleshooting deployment issues involving the {{ site.product_short }} suite.
55
slug: deployment_troubleshooting
66
position: 20
77
---
88

99
# Deployment Troubleshooting
1010

11-
This page provides information for common issues you may encounter while deploying applications with the UI for ASP.NET Core components.
11+
This page provides information for common issues you may encounter while deploying applications with the {{ site.product_short }} components.
1212

1313

1414
>important The machine that performs the publish build must be able to properly restore the referenced Telerik NuGet packages. See the [CI, CD, Build Server]({%slug deployment_ci_cd_build%}) article for more details on setting automation up.
1515
1616

1717
### Trial Message
1818

19-
`Trial Message` - Such behavior will occur if there is a reference to the UI for ASP.NET Core Trial version left in the application. Make sure that the trial version is removed from the release build pipeline. Follow the steps described in the [Switching to a Developer License]({%slug upgrade_aspnetcore%}#switching-to-a-developer-license) article.
19+
`Trial Message` - Such behavior will occur if there is a reference to the {{ site.product_short }} Trial version left in the application. Make sure that the trial version is removed from the release build pipeline. Follow the steps described in the [Switching to a Developer License]({%slug upgrade_aspnetcore%}#switching-to-a-developer-license) article.
2020

2121

2222
## See Also

docs-aspnet/installation/nuget-keys.md

Lines changed: 0 additions & 119 deletions
This file was deleted.
32.6 KB
Loading
39.7 KB
Loading

docs-aspnet/knowledge-base/setup-private-nuget-feed-azure.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Setting Up a Private NuGet Feed for Azure
3-
description: An example on how to set up the private NuGet feed in Azure to publish an ASP.NET Core application that references the Telerik UI for ASP.NET Core assembly.
3+
description: An example on how to set up the private NuGet feed in Azure to publish an {{ site.framework }} application that references the {{ site.product }} assembly.
44
page_title: Set Up Private NuGet Feed for Azure
55
type: how-to
66
slug: howto_setupprivatefeedazure_aspnetcore
7-
tags: aspnet, core, nuget, azure
7+
tags: aspnet, core, mvc, nuget, azure, artifacts
88
res_type: kb
99
---
1010

@@ -19,7 +19,7 @@ res_type: kb
1919

2020
## Description
2121

22-
How can I set up the private NuGet feed in Azure to publish an ASP.NET Core application that references the Telerik UI for ASP.NET Core package?
22+
How can I set up the private NuGet feed in Azure to publish an {{ site.framework }} application that references the {{ site.product }} package?
2323

2424
## Solution
2525

@@ -108,9 +108,14 @@ If you do not want pipelines to have unfettered access to the Telerik account ho
108108

109109
1. You can get the NuGet package file (nupkg) for any Telerik product you're using by going to the downloads page for that product. You can start at the [My Account - Downloads](https://www.telerik.com/account/my-downloads) page.
110110

111-
1. Underneath the installer for the product, you will find the *Other Setup Files* section where the nupkg files will be. For example, here's what it looks like for the [Telerik UI for ASP.NET Core](https://docs.telerik.com/aspnet-core/introduction) packages.
111+
1. Select the {{ site.product }} product.
112112

113+
1. Underneath the installer for the product, you will find the *Other Setup Files* section where the nupkg files will be. For example, here's what it looks like for the {{ site.product }} packages.
114+
{% if site.core %}
113115
![{{ site.product_short }} Download nupkg file](images/download-nupkg-file.png)
116+
{% else %}
117+
![{{ site.product_short }} Download nupkg file](images/download-nupkg-file-mvc.png)
118+
{% endif %}
114119

115120
1. Go to the build pipeline and select that feed for a NuGet Restore step.
116121

0 commit comments

Comments
 (0)