Skip to content

Commit 684d49d

Browse files
chore(getting-started): improve tutorials
1 parent d669eea commit 684d49d

File tree

4 files changed

+33
-45
lines changed

4 files changed

+33
-45
lines changed

_contentTemplates/common/get-started.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
#blazor-tutorial-intro
23-
## Set Up a Blazor Project
23+
## Step 1 - Set Up a Blazor Project
2424

2525
[Blazor](https://blazor.net/) is still a new technology, so you need to ensure you can run its vanilla version first. To do that, follow the MSDN tutorial and make sure that you can create and run basic sample Blazor applications:
2626
#end
@@ -35,12 +35,12 @@
3535
3636
You may also find useful the [Getting started videos for Blazor](https://www.youtube.com/watch?v=aaRAZYaJ4xc&list=PLvmaC-XMqeBYPTwcm478vs8Rujq2tiVJo) by Telerik.
3737

38-
>caption Once you have the vanilla Blazor application running, continue to the next steps.
38+
>caption Once you have a vanilla Blazor application running, continue to the next steps.
3939
#end
4040

4141

4242
#add-nuget-feed
43-
## Add the Telerik NuGet Feed to Visual Studio
43+
### Add the Telerik NuGet Feed to Visual Studio
4444

4545
Telerik UI for Blazor is distributed through our private NuGet feed.
4646

@@ -53,11 +53,13 @@ Once you have added the Telerik NuGet feed, continue with this tutorial.
5353

5454

5555
#project-creation-part-1
56-
If you have one, go to the [Add to Existing Project](#add-to-existing-project) section below.
56+
If you have one, go to the [Add the Telerik Components to an Existing Project Project](#step-3---add-the-telerik-components-to-an-existing-project) section below.
5757

58-
If you don't have a Blazor project set up, first you need to create one, then go to the [Add to Existing Project](#add-to-existing-project) section below.
5958

60-
>tip You can use the [Visual Studio Extensions]({%slug getting-started-vs-integration-new-project%}) we provide to prepare the project for you, so that you can start using the Telerik components immediately.
59+
60+
>tip You can use the [Visual Studio Extensions]({%slug getting-started-vs-integration-overview%}) we provide to [create the project for you]({%slug getting-started-vs-integration-new-project%}), so that you can start using the Telerik components immediately.
61+
>
62+
>The rest of this article will explain the manual steps if you want to have a better understanding of the underlying process.
6163
6264
To create a project manually, follow these steps:
6365

@@ -75,7 +77,9 @@ If you don't have an active license, [start a UI for Blazor trial](https://www.t
7577
#end
7678

7779
#get-access
78-
To get access to the UI for Blazor components, follow these steps:
80+
### Enable the Components in the Project
81+
82+
To have the project use the Telerik UI for Blazor components, follow these steps:
7983

8084
1. @[template](/_contentTemplates/common/get-started.md#start-trial)
8185

getting-started/client-blazor.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Client-side Blazor
2+
title: Client-side Blazor - Tutorial
33
page_title: First Steps with Client-side UI for Blazor
44
description: First Steps with UI for Blazor Client-side
55
slug: getting-started/client-side
@@ -12,31 +12,28 @@ position: 1
1212

1313
This article explains how to get the Telerik UI for Blazor components in your **Client-side** Blazor project and start using them quickly. The process consists of the following steps:
1414

15-
1. [Set Up a Blazor Project](#set-up-a-blazor-project)
16-
1. [Add the Telerik NuGet Feed to Visual Studio](#add-the-telerik-nuget-feed-to-visual-studio)
17-
1. [Add the Telerik Components to Your Project](#add-the-telerik-components-to-your-project)
18-
* [Add to an Existing Project](#add-to-existing-project)
19-
1. [Add a Telerik Component to a View](#add-a-telerik-component-to-a-view)
15+
1. [Set Up a Blazor Project](#step-1---set-up-a-blazor-project)
16+
1. [Enable the Telerik Components in the Project](#step-2---enable-the-telerik-components-in-an-existing-project)
17+
1. [Add the Telerik NuGet Feed to Visual Studio](#add-the-telerik-nuget-feed-to-visual-studio)
18+
1. [Enable the Components in the Project](#enable-the-components-in-the-project)
19+
1. [Add a Telerik Component to a View](#step-3---add-a-telerik-component-to-a-view)
2020

2121

2222
@[template](/_contentTemplates/common/get-started.md#add-latest-ms-bits-client-side-link)
2323

2424

25-
@[template](/_contentTemplates/common/get-started.md#add-nuget-feed)
26-
27-
28-
## Add the Telerik Components to Your Project
29-
3025
For client-side `Blazor App`, we recommend the usage of `Blazor (ASP.NET Hosted)` project.
3126
@[template](/_contentTemplates/common/get-started.md#project-creation-part-1)
3227

3328
1. Choose the `Blazor WebAssembly App` project type, select the `ASP.NET Core hosted` checkbox, and click `Create`.
3429

3530
![Select Blazor Project Type](images/choose-project-template.png)
3631

37-
Now that you have a Blazor project running, it's time to [Add the Telerik components](#add-to-existing-project) to it.
3832

39-
### Add to Existing Project
33+
34+
## Step 2 - Enable the Telerik Components in an Existing Project
35+
36+
@[template](/_contentTemplates/common/get-started.md#add-nuget-feed)
4037

4138
@[template](/_contentTemplates/common/get-started.md#get-access)
4239

@@ -98,7 +95,7 @@ Now that you have a Blazor project running, it's time to [Add the Telerik compon
9895

9996
Now your project can use the Telerik UI for Blazor components.
10097

101-
## Add a Telerik Component to a View
98+
## Step 3 - Add a Telerik Component to a View
10299

103100
The final step is to actually use a component on a view and run it in the browser. For example:
104101

getting-started/server-blazor.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Server-side Blazor
2+
title: Server-side Blazor - Tutorial
33
page_title: First Steps with Server-side UI for Blazor
44
description: First Steps with UI for Blazor Server-side
55
slug: getting-started/server-side
@@ -12,19 +12,15 @@ position: 2
1212

1313
This article explains how to get the Telerik UI for Blazor components in your **Server-side** Blazor project and start using them quickly. The process consists of the following steps:
1414

15-
1. [Set Up a Blazor Project](#set-up-a-blazor-project)
16-
1. [Add the Telerik NuGet Feed to Visual Studio](#add-the-telerik-nuget-feed-to-visual-studio)
17-
1. [Add the Telerik Components to Your Project](#add-the-telerik-components-to-your-project)
18-
* [Add to an Existing Project](#add-to-existing-project)
19-
1. [Add a Telerik Component to a View](#add-a-telerik-component-to-a-view)
15+
1. [Set Up a Blazor Project](#step-1---set-up-a-blazor-project)
16+
1. [Enable the Telerik Components in the Project](#step-2---enable-the-telerik-components-in-an-existing-project)
17+
1. [Add the Telerik NuGet Feed to Visual Studio](#add-the-telerik-nuget-feed-to-visual-studio)
18+
1. [Enable the Components in the Project](#enable-the-components-in-the-project)
19+
1. [Add a Telerik Component to a View](#step-3---add-a-telerik-component-to-a-view)
2020

2121
@[template](/_contentTemplates/common/get-started.md#add-latest-ms-bits-server-side-link)
2222

2323

24-
@[template](/_contentTemplates/common/get-started.md#add-nuget-feed)
25-
26-
27-
## Add the Telerik Components to Your Project
2824

2925
To use Blazor server-side, you need to use the `Blazor App` type of project with its `Blazor Server App` flavor.
3026
@[template](/_contentTemplates/common/get-started.md#project-creation-part-1)
@@ -33,9 +29,11 @@ To use Blazor server-side, you need to use the `Blazor App` type of project with
3329

3430
![Select Blazor Project Type](images/choose-project-template-server-blazor.png)
3531

36-
Now that you have a Blazor project running, it's time to [Add the Telerik components](#add-to-existing-project) to it.
3732

38-
### Add to Existing Project
33+
34+
## Step 2 - Enable the Telerik Components in an Existing Project
35+
36+
@[template](/_contentTemplates/common/get-started.md#add-nuget-feed)
3937

4038
@[template](/_contentTemplates/common/get-started.md#get-access)
4139

@@ -92,7 +90,7 @@ Now that you have a Blazor project running, it's time to [Add the Telerik compon
9290

9391
Now your project can use the Telerik UI for Blazor components.
9492

95-
## Add a Telerik Component to a View
93+
## Step 3 - Add a Telerik Component to a View
9694

9795
The final step is to actually use a component on a view and run it in the browser. For example:
9896

getting-started/what-you-need.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,6 @@ To use the Telerik UI for Blazor, you need to:
1919
1. add the [client assets](#client-assets)
2020
1. [set up the project](#project-configuration) to recognize the Telerik components
2121

22-
## Before You Continue
23-
24-
Before you continue, make sure you can use Blazor. Read below for more details.
25-
26-
27-
28-
@[template](/_contentTemplates/common/get-started.md#blazor-tutorial-intro)
29-
@[template](/_contentTemplates/common/get-started.md#get-started-msdn-link)
30-
31-
@[template](/_contentTemplates/common/get-started.md#after-you-run-vanilla)
32-
3322

3423
## Telerik Specific Packages
3524

0 commit comments

Comments
 (0)