-
-
Notifications
You must be signed in to change notification settings - Fork 7
doc(Readme): update component readme doc #695
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -16,103 +16,79 @@ | |||||||||
| - Supports WebAssembly-based client-side and SignalR-based server-side UI event interaction. | ||||||||||
| - Supports Progressive Web Applications (PWA). | ||||||||||
| - Build with C#, a multi-paradigm static language for an efficient development experience. | ||||||||||
| - .NET Standard 2.1 based, with direct reference to the rich .NET ecosystem. | ||||||||||
| - Supports NET5. (Server-Side, WASM) | ||||||||||
| - .NET 6.0, with direct reference to the rich .NET ecosystem. | ||||||||||
| - Seamless integration with existing ASP.NET Core MVC and Razor Pages projects. | ||||||||||
|
|
||||||||||
| ## Online Examples | ||||||||||
| [](https://www.blazor.zone) | ||||||||||
| [](https://www.blazor.zone) | ||||||||||
|
|
||||||||||
| ## Installation Guide | ||||||||||
|
|
||||||||||
| - Install .net core sdk [Official website](https://dotnet.microsoft.com/download) | ||||||||||
| - Install Visual Studio 2019 lastest [Official website](https://visualstudio.microsoft.com/vs/getting-started/) | ||||||||||
| - Install Visual Studio lastest [Official website](https://visualstudio.microsoft.com/vs/getting-started/) | ||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue (typo): Typo: 'lastest' should be 'latest'. Update the installation guide to use 'latest' instead of 'lastest'.
Suggested change
|
||||||||||
| - Install Visual Studio lastest [Official website](https://visualstudio.microsoft.com/vs/getting-started/) | |
| - Install Visual Studio latest [Official website](https://visualstudio.microsoft.com/vs/getting-started/) |
Copilot
AI
Nov 13, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Grammar issue: The sentence should start with a capital letter. Change "it's either" to "It's either".
| it's either **index.html** or **_Layout.cshtml/_Host.cshtml/App.razor** depending on whether you're running WebAssembly or Server | |
| It's either **index.html** or **_Layout.cshtml/_Host.cshtml/App.razor** depending on whether you're running WebAssembly or Server |
Copilot
AI
Nov 13, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The comment in the code example includes a nullable reference type annotation (string?), but there's no documentation explaining that this requires nullable reference types to be enabled in the project settings. Consider adding a note about this requirement or removing the ? to avoid confusion for users who may not have nullable reference types enabled.
| private string? _text; | |
| private string _text; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The solution file references
README.mdandREADME.zh-CN.mdin the/docs/folder, but these files do not appear to exist in the repository. This will cause build or solution loading issues. Please ensure these files are created or remove these references from the solution file.