Skip to content

Commit d73cfec

Browse files
authored
chore(Package): update Task/Logging version to 8.0 (#2709)
1 parent e5f95f1 commit d73cfec

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
</ItemGroup>
2626

2727
<ItemGroup>
28-
<PackageReference Include="Longbow.Logging" Version="8.0.0-beta01" />
29-
<PackageReference Include="Longbow.Tasks" Version="7.0.0" />
28+
<PackageReference Include="Longbow.Logging" Version="8.0.0" />
29+
<PackageReference Include="Longbow.Tasks" Version="8.0.0" />
3030
<PackageReference Include="BootstrapBlazor.AzureOpenAI" Version="8.0.1" />
3131
<PackageReference Include="BootstrapBlazor.AzureTranslator" Version="8.0.0" />
3232
<PackageReference Include="BootstrapBlazor.BaiduSpeech" Version="8.0.0" />

src/BootstrapBlazor.Server/Services/ClearUploadFilesService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public ClearTempFilesService(IWebHostEnvironment env, IOptionsMonitor<WebsiteOpt
3434
/// <returns></returns>
3535
protected override Task ExecuteAsync(CancellationToken stoppingToken)
3636
{
37-
_ = TaskServicesManager.GetOrAdd("Clear Upload Files", token =>
37+
TaskServicesManager.GetOrAdd("Clear Upload Files", (provider, token) =>
3838
{
3939
var webSiteUrl = $"images{Path.DirectorySeparatorChar}uploader{Path.DirectorySeparatorChar}";
4040
var filePath = Path.Combine(_env.WebRootPath, webSiteUrl);

src/BootstrapBlazor.Server/appsettings.Development.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,15 @@
3939
"TableSettings": {
4040
"CheckboxColumnWidth": 36
4141
},
42-
"IgnoreLocalizerMissing": true
42+
"IgnoreLocalizerMissing": true,
43+
"StepSettings": {
44+
"Short": "1",
45+
"Int": "1",
46+
"Long": "1",
47+
"Float": "0.1",
48+
"Double": "0.01",
49+
"Decimal": "0.01"
50+
}
4351
},
4452
"GiteeOptions": {
4553
"ClientId": "<ClientId>",

src/BootstrapBlazor.Server/appsettings.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
},
3333
"IgnoreLocalizerMissing": true,
3434
"StepSettings": {
35-
"Short": 1,
36-
"Int": 1,
37-
"Long": 1,
35+
"Short": "1",
36+
"Int": "1",
37+
"Long": "1",
3838
"Float": "0.1",
3939
"Double": "0.01",
4040
"Decimal": "0.01"

0 commit comments

Comments
 (0)