Skip to content

Commit

Permalink
Updated to aspnetcore preview9 and fixed any changes in the API. (rea…
Browse files Browse the repository at this point in the history
  • Loading branch information
limefrogyank authored and glennawatson committed Sep 9, 2019
1 parent 6e09f3e commit 5184183
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/ReactiveUI.Blazor/ReactiveComponentBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ public void Dispose()
}

/// <inheritdoc />
protected override void OnInit()
protected override void OnInitialized()
{
_initSubject.OnNext(Unit.Default);
base.OnInit();
base.OnInitialized();
}

/// <summary>
Expand Down
6 changes: 3 additions & 3 deletions src/ReactiveUI.Blazor/ReactiveLayoutComponentBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using System.Reactive.Linq;
using System.Reactive.Subjects;
using System.Runtime.CompilerServices;
using Microsoft.AspNetCore.Components.Layouts;
using Microsoft.AspNetCore.Components;

namespace ReactiveUI.Blazor
{
Expand Down Expand Up @@ -89,10 +89,10 @@ public void Dispose()
}

/// <inheritdoc />
protected override void OnInit()
protected override void OnInitialized()
{
_initSubject.OnNext(Unit.Default);
base.OnInit();
base.OnInitialized();
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/ReactiveUI.Blazor/ReactiveUI.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<ItemGroup>
<PackageReference Include="Reactive.Wasm" Version="1.0.1-preview.8" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.0.0-preview6.19307.2" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.0.0-preview9.19424.4" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 5184183

Please sign in to comment.