Skip to content

Commit 885d174

Browse files
authored
Merge pull request #29 from 0phois/MudBlazor-v8-preview.7
update to v8 preview 7
2 parents 556d58a + 8e294fb commit 885d174

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

demo/StaticSample/StaticSample.Client/StaticSample.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<ItemGroup>
1212
<PackageReference Include="Blazr.RenderState.WASM" Version="1.0.0" />
1313
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.10" />
14-
<PackageReference Include="MudBlazor" Version="8.0.0-preview.5" />
14+
<PackageReference Include="MudBlazor" Version="8.0.0-preview.7" />
1515
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="8.0.10" />
1616
</ItemGroup>
1717

demo/StaticSample/StaticSample/StaticSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PrivateAssets>all</PrivateAssets>
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
</PackageReference>
20-
<PackageReference Include="MudBlazor" Version="8.0.0-preview.5" />
20+
<PackageReference Include="MudBlazor" Version="8.0.0-preview.7" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

demo/StaticSample/StaticSample/UserRegistrationCleanupService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ namespace StaticSample;
66

77
public class UserRegistrationCleanupService(IServiceProvider ServiceProvider, ILogger<UserRegistrationCleanupService> Logger) : IHostedService
88
{
9-
private const int CleanupIntervalMinutes = 2;
10-
private const int DeleteAfterMinutes = 5;
9+
private const int CleanupIntervalMinutes = 5;
10+
private const int DeleteAfterMinutes = 30;
1111

1212
private Task? _executingTask;
1313
private readonly CancellationTokenSource _cts = new();

src/MudBlazor.StaticInput.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<ItemGroup>
2424
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
25-
<PackageReference Include="MudBlazor" Version="8.0.0-preview.5" />
25+
<PackageReference Include="MudBlazor" Version="8.0.0-preview.7" />
2626
</ItemGroup>
2727

2828
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">

tests/StaticInput.UnitTests.Viewer/StaticInput.UnitTests.Viewer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="MudBlazor" Version="8.0.0-preview.5" />
10+
<PackageReference Include="MudBlazor" Version="8.0.0-preview.7" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

tests/StaticInput.UnitTests/StaticInput.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</PackageReference>
2323
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
2424
<PackageReference Include="Microsoft.Playwright" Version="1.48.0" />
25-
<PackageReference Include="MudBlazor" Version="8.0.0-preview.5" />
25+
<PackageReference Include="MudBlazor" Version="8.0.0-preview.7" />
2626
<PackageReference Include="xunit" Version="2.9.2" />
2727
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
2828
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)