Skip to content

Commit d3fd2df

Browse files
Merge pull request #6909 from syncfusion-content/BLAZ-000-blazor-docs
000: Resolve conflicts in blazor documentation
2 parents 2b731e1 + 8e9e38f commit d3fd2df

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

blazor-toc.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

blazor/common/aot-compilation/optimize-performance-blazor-wasm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Optimize Performance in Blazor WebAssembly using AOT Compilation
1111

12-
This article explains how to improve the performance of **Blazor WebAssembly (WASM)** applications using **Ahead-of-Time (AOT) compilation**, specifically for applications using **Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components**.
12+
This article explains how to improve the performance of Blazor WebAssembly (WASM) Apps using **Ahead-of-Time (AOT) compilation**, including apps that use Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components.
1313

1414
## AOT Compilation Overview
1515

@@ -62,7 +62,7 @@ bin/Release/net8.0/publish/wwwroot/
6262
---
6363

6464
## Size vs Performance Tradeoff
65-
The following table compares performance and size metrics for Blazor WebAssembly with and without AOT, using a Syncfusion<sup style="font-size:70%">&reg;</sup> Grid with paging enabled.
65+
The following sample metrics compare performance and size for Blazor WebAssembly with and without AOT, using a Syncfusion<sup style="font-size:70%">&reg;</sup> Grid with paging enabled.
6666

6767
| Metric | Without AOT | With AOT |
6868
|----------------------------|----------------------|----------------------|

blazor/common/aot-compilation/reduce-size-of-blazor-wasm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To manually disable Intermediate Language linking, add the following MSBuild pro
2828
```
2929
## Enable trimming
3030

31-
**PublishTrimmed** property enables code trimming for self-contained publishing.It automatically disables features that aren’t compatible with trimming and provides warnings about trimming conflicts during build.
31+
The **PublishTrimmed** property enables code trimming for self-contained publishing. It automatically disables features that are not compatible with trimming and provides warnings about trimming conflicts during build.
3232

3333
To [enable trimming](https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/trimming-options#enable-trimming), add the following to your `.csproj` file:
3434

@@ -54,7 +54,7 @@ Partial trimming is less aggressive and may be safer for applications that use r
5454

5555
To control **Intermediate Language (IL)** trimming on a per-assembly basis by supplying an XML configuration file. This approach allows you to explicitly preserve assemblies, types, or members that may be trimmed, even if they are not directly referenced in your application code.
5656

57-
To [enable Intermediate Language trimming](https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/prepare-libraries-for-trimming#enable-project-specific-trimming) in a Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor application, update the project file as shown below. This example demonstrates how to safely configure trimming using the Grid paging feature.
57+
To [enable Intermediate Language trimming](https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/prepare-libraries-for-trimming#enable-project-specific-trimming) in a Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor application, update the project file as shown below. This example demonstrates how to configure trimming using the Grid paging feature.
5858

5959
#### How to Enable Intermediate Language Trimming Safely for Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Grid
6060

blazor/common/how-to/add-blazor-component-to-the-toolbox.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ component: Common
77
documentation: ug
88
---
99

10-
# How to add Syncfusion<sup style="font-size:70%">&reg;</sup> Component to the toolbox in Blazor Application
10+
# Add Syncfusion® Blazor components to the Visual Studio Toolbox
1111

1212
This section provides step-by-step guidance on how to add Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components to the Visual Studio Toolbox. By default, the Toolbox displays HTML elements and Bootstrap snippets. To customize it for Blazor development, open the Toolbox by pressing `Ctrl + Alt + X` or by navigating to **View → Toolbox** from the top menu.
1313

1414
To include Syncfusion<sup style="font-size:70%">&reg;</sup> components for Blazor in the Toolbox, follow these steps:
1515

16-
1. Right-click anywhere within the Visual Studio Toolbox window, select **Add Tab** from the context menu. Enter a name for the new tab such as Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Components and press Enter to create it.
16+
1. Right-click anywhere within the Visual Studio Toolbox, select **Add Tab**, then name the tab (for example, "Syncfusion Blazor Components") and press Enter.
1717

1818
![Add new tab in toolbox](images/new-tab-toolbox.png)
1919

20-
2. In the code editor, **write or paste a Blazor component snippet**, such as the Syncfusion<sup style="font-size:70%">&reg;</sup> SfCalendar. Once the code is in place, **select the entire code snippet**, then **drag and drop it** into the newly created tab in the Visual Studio Toolbox.
20+
2. In the code editor, write or paste a Blazor component snippet (for example, the Syncfusion<sup style="font-size:70%">&reg;</sup> `SfCalendar`). Select the entire snippet, then drag and drop it into the new tab in the Toolbox.
2121

2222
![Add code snippet to toolbox](images/add-snippet.gif)
2323

blazor/getting-started/blazor-web-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ dotnet --version
129129
{% endhighlight %}
130130
{% endtabs %}
131131

132-
### Create a Blazor Web App using .NET CLI
132+
## Create a Blazor Web App using .NET CLI
133133

134134
Run the following command to create a new Blazor Web App in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
135135

@@ -147,7 +147,7 @@ cd BlazorWebApp.Client
147147
{% endhighlight %}
148148
{% endtabs %}
149149

150-
This command creates new Blazor Web App and places it in a new directory called `BlazorWebApp` inside your current location. See [Create Blazor app topic](https://dotnet.microsoft.com/en-us/learn/aspnet/blazor-tutorial/create) and [dotnet new CLI command](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?pivots=linux-macos&view=aspnetcore-8.0) topics for more details.
150+
This command creates new Blazor Web App and places it in a new directory called `BlazorApp` inside your current location. See [Create Blazor app topic](https://dotnet.microsoft.com/en-us/learn/aspnet/blazor-tutorial/create) and [dotnet new CLI command](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?pivots=linux-macos&view=aspnetcore-8.0) topics for more details.
151151

152152
### Install Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor Navigations and Themes NuGet in the App
153153

blazor/getting-started/blazor-webassembly-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ dotnet --version
113113
{% endhighlight %}
114114
{% endtabs %}
115115

116-
### Create a Blazor WebAssembly App using .NET CLI
116+
## Create a Blazor WebAssembly App using .NET CLI
117117

118118
Run the `dotnet new blazorwasm` command to create a new Blazor WebAssembly App in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
119119

0 commit comments

Comments
 (0)