mirror of
https://gitee.com/dotnetchina/Furion.git
synced 2025-12-06 07:49:05 +08:00
😐 调整代码格式和 README.md 内容
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -4,5 +4,6 @@
|
||||
*.yml linguist-language=C#
|
||||
*.html linguist-language=C#
|
||||
*.js linguist-language=C#
|
||||
*.tsx linguist-language=C#
|
||||
*.xml linguist-language=C#
|
||||
*.css linguist-language=C#
|
||||
|
||||
@@ -24,7 +24,7 @@ public class HelloService
|
||||
}
|
||||
```
|
||||
|
||||
Open browser access `https://localhost:5001` or `http://localhost:5000`.
|
||||
Open browser access `http://localhost:5000`.
|
||||
|
||||
## Documentation
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ public class HelloService
|
||||
}
|
||||
```
|
||||
|
||||
打开浏览器访问 `https://localhost:5001` 或 `http://localhost:5000`。
|
||||
打开浏览器访问 `http://localhost:5000`。
|
||||
|
||||
## 文档
|
||||
|
||||
|
||||
@@ -115,7 +115,7 @@ internal sealed class ScheduleHostedService : BackgroundService
|
||||
/// </summary>
|
||||
/// <param name="stoppingToken">后台主机服务停止时取消任务 Token</param>
|
||||
/// <returns><see cref="Task"/> 实例</returns>
|
||||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||||
protected async override Task ExecuteAsync(CancellationToken stoppingToken)
|
||||
{
|
||||
_logger.LogInformation("Schedule hosted service is running.");
|
||||
|
||||
|
||||
@@ -115,7 +115,7 @@ internal sealed class ScheduleHostedService : BackgroundService
|
||||
/// </summary>
|
||||
/// <param name="stoppingToken">后台主机服务停止时取消任务 Token</param>
|
||||
/// <returns><see cref="Task"/> 实例</returns>
|
||||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||||
protected async override Task ExecuteAsync(CancellationToken stoppingToken)
|
||||
{
|
||||
_logger.LogInformation("Schedule hosted service is running.");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user