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
> .NET 6.0 is available from v19.4.0.38 and support from Visual Studio 2022.
27
-
28
-
> .NET 7.0 is available from v20.4.0.38 and support from Visual Studio 2022.
29
-
30
-
> .NET 8.0 is available from v23.3.4 and support from Visual Studio 2022.
31
-
32
-
3. Select either **Next** or the **Project Type** tab. Syncfusion Blazor Project Types will be displayed. Select one of the following Syncfusion Blazor project types:
33
-
* Syncfusion Blazor Server App
34
-
* Syncfusion Blazor WebAssembly App
35
-
36
-
You can select ASP.NET Core hosted, Progressive Web Application, or both in the Syncfusion Blazor Web Assembly App project type.
37
-
38
-

26
+
N> Refer to the .NET SDK support for Syncfusion Blazor Components [here](https://blazor.syncfusion.com/documentation/system-requirements#net-sdk).
27
+
28
+
3. Select either **Next** or the **Project Type** tab. Syncfusion Blazor project types will be displayed. Choose one of the following Syncfusion Blazor project types based on the version of the .NET SDK you are using.
29
+
30
+
| .NET SDK version | Supported Syncfusion Blazor Application Type |
31
+
| ------------- | ------------- |
32
+
|[.NET 8.0](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)| Syncfusion Blazor Web App |
In the **Syncfusion Blazor WebAssembly App** application type, you can choose ASP.NET Core hosted, Progressive Web Application, or both.
62
+
63
+

39
64
40
65
4. The Configuration section will be displayed when you click either **Next** or the **Configuration** tab. Here, you have the option for selecting the required .NET Core version, themes, https configuration, and Blazor Web Assembly project types (ASP.NET Core hosted and Progressive Web Application).
Copy file name to clipboardExpand all lines: Extension/Blazor-Extension/Visual-Studio/template-studio.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -372,6 +372,42 @@ You can select a culture language in combobox at top right on the output page to
372
372
373
373
### Individual Authentication
374
374
375
+
#### Blazor Web App
376
+
377
+
##### Applying Database Migrations and User Registration in the .NET 8.0 Blazor Web App
378
+
379
+
##### Applying Database Migrations:
380
+
381
+
In the Blazor Web App, it's essential to apply pending migrations to the database before proceeding with user registration. Choose one of the following options:
382
+
383
+
**Option 1: Using Visual Studio Package Manager Console**
384
+
385
+
Navigate to **View -> Other Windows -> Package Manager Console** in Visual Studio.
386
+
387
+
Run the following command in the Package Manager Console:
388
+
389
+
```Update-Database```
390
+
391
+
**Option 2: Using Command Prompt**
392
+
393
+
Open a command prompt in your project directory and execute the following command:
394
+
395
+
```dotnet ef database update```
396
+
397
+
##### User Registration:
398
+
399
+
1. Launch the application and register by submitting your email address and creating a password.
400
+
401
+

402
+
403
+
2. Confirm your registration by clicking **Click here to confirm your account.**
404
+
405
+

406
+
407
+
3. Submit your registered email address and password to log in to the application.
408
+
409
+

410
+
375
411
#### Server Application, ASP.NET Core hosted Web Application, and Progressive Web Application with ASP.NET Core hosted
376
412
377
413
1. For register the application, submit your email address and create a password.
0 commit comments