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: blazor/common/showcase-samples.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Syncfusion<sup style="font-size:70%">®</sup> has a collection of sample appl
23
23
| Organizational Chart | An organizational chart is a diagram that visually conveys a company's internal structure by detailing the roles, responsibilities, and relationships between individuals within an entity. |[Server](https://blazor.syncfusion.com/showcase/organization-chart/)/[WASM](https://blazor.syncfusion.com/showcase/wasm/organization-chart/)|[GitHub code](https://github.com/syncfusion/blazor-showcase-organizational-chart)|
24
24
| Document Explorer | Manages the file system that allows users to access, edit, and sort files or folders and open Word, PowerPoint, and PDF documents. |[Server](https://blazor.syncfusion.com/showcase/documentexplorer/)|[GitHub code](https://github.com/syncfusion/blazor-showcase-document-explorer)|
25
25
| Sprint Management | Sprint management involves managing the sprint board of an organization. It allows teams to track tasks, allocate work, and monitor progress during a sprint. |[Server](https://blazor.syncfusion.com/showcase/sprint-management/)|[GitHub code](https://github.com/syncfusion/blazor-showcase-sprint-management)|
26
-
|Hotel Booking | Hotel Booking App empowers hotel owners by streamlining room bookings, management, and offering real-time insights into occupancy, including current bookings and available rooms per floor. |[Server](https://blazor.syncfusion.com/showcase/hotel-booking)|[GitHub code](https://github.com/syncfusion/blazor-showcase-hotel-booking)|
26
+
|Stay Reservation |Stay Reservation simplifies room bookings, streamlines management for hotel owners, and provides real-time insights into occupancy, including active reservations and available rooms by floor. |[Server](https://blazor.syncfusion.com/showcase/stay-reservation)|[GitHub code](https://github.com/syncfusion/blazor-showcase-stay-reservation)|
27
27
| Stock Market Dashboard | StockMarket Dashboard Showcase app is a comprehensive tool that provides real-time data, analytics, and insights for investors, displaying key financial metrics and market trends in an intuitive interface. |[Server](https://blazor.syncfusion.com/showcase/stockmarket-dashboard/)|[GitHub code](https://github.com/syncfusion/blazor-showcase-stockmarket-dashboard)|
28
28
| Fitness Tracker | Track and visualize data of your daily activities, diet and fasting to track fitness of daily statistics. |[Server](https://blazor.syncfusion.com/showcase/fitness-tracker/)|[GitHub code](https://github.com/syncfusion/blazor-showcase-fitness-tracker)|
29
29
| Loan Calculator | Calculate loan payments, interest rates, and amortization schedules. When you are planning for a personal loan or analyzing business financing options, this provides accurate results and helps you make informed financial decisions. |[WASM](https://blazor.syncfusion.com/showcase/wasm/loan-calculator/)|[GitHub code](https://github.com/syncfusion/blazor-showcase-loan-calculator)|
Copy file name to clipboardExpand all lines: blazor/getting-started/blazor-single-nuget.md
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ documentation: ug
9
9
10
10
# Getting started with Blazor Component using Syncfusion.Blazor NuGet
11
11
12
-
This section briefly explains how to include a Blazor component with the Syncfusion.Blazor Single NuGet package in your Blazor Server App and Blazor WebAssembly App using Visual Studio.
12
+
This section briefly explains how to include a Blazor component with the Syncfusion.Blazor Single NuGet package in your Blazor Server App and Blazor WebAssembly Standalone App using Visual Studio.
13
13
14
14
## Prerequisites
15
15
16
16
*[System requirements for Blazor components](https://blazor.syncfusion.com/documentation/system-requirements)
17
17
18
18
## Create a new Blazor App in Visual Studio
19
19
20
-
You can create a **Blazor Server App** or **Blazor WebAssembly App**using Visual Studio via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0) or the [Syncfusion<supstyle="font-size:70%">®</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-integration/template-studio).
20
+
You can create a **Blazor Web App (Server Interactive Mode) or WebAssembly Standalone**using Visual Studio via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-8.0&pivots=vs) or the [Syncfusion<supstyle="font-size:70%">®</sup> Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-integration/template-studio).
21
21
22
22
## Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Single NuGet in the App
## Register Syncfusion<supstyle="font-size:70%">®</sup> Blazor Service
37
37
38
-
Open **~/_Imports.razor** file and import the `Syncfusion.Blazor` and `Syncfusion.Blazor.Calendars` namespace.
38
+
Open **~/Components/_Imports.razor** file and import the `Syncfusion.Blazor` and `Syncfusion.Blazor.Calendars` namespace.
39
39
40
40
```cshtml
41
41
@@ -44,7 +44,7 @@ Open **~/_Imports.razor** file and import the `Syncfusion.Blazor` and `Syncfusio
44
44
45
45
```
46
46
47
-
Now, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Service in the **~/Program.cs** file of your Blazor Server App or Blazor WebAssembly App.
47
+
Now, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Service in the **~/Program.cs** file of your Blazor WebApp Server Interactive Mode or WebAssembly Standalone app.
48
48
49
49
{% tabs %}
50
50
{% highlight C# tabtitle="Blazor Server App" hl_lines="3 10" %}
The theme stylesheet and script can be accessed from NuGet through [Static Web Assets](https://blazor.syncfusion.com/documentation/appearance/themes#static-web-assets). Reference the stylesheet and script in the `<head>` of the main page as follows:
89
89
90
-
* For **.NET 6** Blazor Server app, include it in **~/Pages/_Layout.cshtml** file.
91
90
92
-
* For **.NET 7** Blazor Server app, include it in the **~/Pages/_Host.cshtml** file.
91
+
* For **.NET 8 and .NET 9 WebAssembly Standalone app**, include it in **wwwroot/index.html** file.
93
92
94
-
* For Blazor WebAssembly app, include it in the **~/index.html** file.
93
+
* For **.NET 8 and .NET 9 Blazor WebApp Server Interactive Mode**, include it in **~/Components/App.razor**.
95
94
96
95
```html
97
96
<head>
@@ -105,7 +104,7 @@ N> Check out the [Blazor Themes](https://blazor.syncfusion.com/documentation/app
0 commit comments