-
Notifications
You must be signed in to change notification settings - Fork 306
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
doc(CodeSnippetService): update code file path #4877
Conversation
Reviewer's Guide by SourceryThis PR updates file paths across the codebase, replacing references to 'BootstrapBlazor.Shared' with 'BootstrapBlazor.Server'. The changes are primarily in documentation links, file paths for resource loading, and API endpoints. Class diagram for CodeSnippetService changesclassDiagram
class CodeSnippetService {
- string ServerUrl
- string ContentRootPath
- string SourceCodePath
- bool IsDevelopment
+ Task<string> GetFileContentAsync(string fileName)
+ Task<string> ReadFileAsync(string fileName)
}
note for CodeSnippetService "Updated file paths from BootstrapBlazor.Shared to BootstrapBlazor.Server"
File-Level Changes
Assessment against linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4877 +/- ##
========================================
Coverage ? 100.00%
========================================
Files ? 623
Lines ? 27832
Branches ? 3982
========================================
Hits ? 27832
Misses ? 0
Partials ? 0 ☔ View full report in Codecov by Sentry. |
update code file path
Summary of the changes (Less than 80 chars)
简单描述你更改了什么, 不超过80个字符;如果有关联 Issue 请在下方填写相关编号
Description
fixes #4876
Regression?
[If yes, specify the version the behavior has regressed from]
[是否影响老版本]
Risk
[Justify the selection above]
Verification
Packaging changes reviewed?
☑️ Self Check before Merge
Summary by Sourcery
Update file paths in the CodeSnippetService and various components to point to the correct server directory, addressing inconsistencies and fixing related issues.
Bug Fixes:
Enhancements: