diff --git a/eng/ProjectReferences.props b/eng/ProjectReferences.props
index ba4bf03987..2dc800b910 100644
--- a/eng/ProjectReferences.props
+++ b/eng/ProjectReferences.props
@@ -96,6 +96,7 @@
+
diff --git a/src/Components/Blazor/Blazor/ref/Microsoft.AspNetCore.Blazor.netstandard2.0.cs b/src/Components/Blazor/Blazor/ref/Microsoft.AspNetCore.Blazor.netstandard2.0.cs
index 878e2a3380..cdb2d7aecd 100644
--- a/src/Components/Blazor/Blazor/ref/Microsoft.AspNetCore.Blazor.netstandard2.0.cs
+++ b/src/Components/Blazor/Blazor/ref/Microsoft.AspNetCore.Blazor.netstandard2.0.cs
@@ -72,7 +72,7 @@ namespace Microsoft.AspNetCore.Blazor.Services
{
internal WebAssemblyUriHelper() { }
public static readonly Microsoft.AspNetCore.Blazor.Services.WebAssemblyUriHelper Instance;
- protected override void InitializeState() { }
+ protected override void EnsureInitialized() { }
protected override void NavigateToCore(string uri, bool forceLoad) { }
[Microsoft.JSInterop.JSInvokableAttribute("NotifyLocationChanged")]
public static void NotifyLocationChanged(string newAbsoluteUri) { }
diff --git a/src/Components/Blazor/Blazor/src/Services/WebAssemblyUriHelper.cs b/src/Components/Blazor/Blazor/src/Services/WebAssemblyUriHelper.cs
index cb9b068fe5..ecbdf7a92d 100644
--- a/src/Components/Blazor/Blazor/src/Services/WebAssemblyUriHelper.cs
+++ b/src/Components/Blazor/Blazor/src/Services/WebAssemblyUriHelper.cs
@@ -25,11 +25,7 @@ namespace Microsoft.AspNetCore.Blazor.Services
{
}
- ///
- /// Called to initialize BaseURI and current URI before those values are used the first time.
- /// Override this method to dynamically calculate those values.
- ///
- protected override void InitializeState()
+ protected override void EnsureInitialized()
{
WebAssemblyJSRuntime.Instance.Invoke