Skip to content

Commit 0d109c3

Browse files
committed
Update SDK
1 parent cb5ed1b commit 0d109c3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"sdk": {
3-
"version": "7.0.100-alpha.1.22071.3"
3+
"version": "7.0.100-preview.2.22102.6"
44
},
55
"tools": {
6-
"dotnet": "7.0.100-alpha.1.22071.3",
6+
"dotnet": "7.0.100-preview.2.22102.6",
77
"runtimes": {
88
"dotnet": [
99
"2.1.30",

src/Components/Authorization/src/CascadingAuthenticationState.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@implements IDisposable
22
@inject AuthenticationStateProvider AuthenticationStateProvider
33

4-
<CascadingValue TValue="Task<AuthenticationState>" Value="@_currentAuthenticationStateTask" ChildContent="@ChildContent" />
4+
<CascadingValue TValue="System.Threading.Tasks.Task<AuthenticationState>" Value="@_currentAuthenticationStateTask" ChildContent="@ChildContent" />
55

66
@code {
77
private Task<AuthenticationState>? _currentAuthenticationStateTask;

src/Components/WebAssembly/testassets/Wasm.Authentication.Client/Pages/Authentication.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@inject AuthenticationStateProvider AuthenticationStateProvider
44
@inject NavigationManager Navigation
55

6-
<RemoteAuthenticatorViewCore TAuthenticationState="RemoteAppState"
6+
<RemoteAuthenticatorViewCore TAuthenticationState="Wasm.Authentication.Client.RemoteAppState"
77
AuthenticationState="AppState"
88
OnLogInSucceeded="CompleteLogin"
99
Action="@Action" />

0 commit comments

Comments
 (0)