diff --git a/eng/ProjectReferences.props b/eng/ProjectReferences.props
index ba4bf03987ad..2dc800b91049 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 878e2a3380f0..cdb2d7aecdcc 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 @@ public partial class WebAssemblyUriHelper : Microsoft.AspNetCore.Components.Serv
{
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 cb9b068fe562..ecbdf7a92d40 100644
--- a/src/Components/Blazor/Blazor/src/Services/WebAssemblyUriHelper.cs
+++ b/src/Components/Blazor/Blazor/src/Services/WebAssemblyUriHelper.cs
@@ -25,11 +25,7 @@ internal WebAssemblyUriHelper()
{
}
- ///
- /// 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