diff --git a/Directory.Build.props b/Directory.Build.props
index a8b3d094..8a52c1ed 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -3,7 +3,7 @@
6.0.0
6.0.0
6.0.0
- net6.0
+ net6.0
6.0.0
diff --git a/save-points/00-get-started/BlazingPizza.Client/BlazingPizza.Client.csproj b/save-points/00-get-started/BlazingPizza.Client/BlazingPizza.Client.csproj
index 86250f68..08e409ff 100644
--- a/save-points/00-get-started/BlazingPizza.Client/BlazingPizza.Client.csproj
+++ b/save-points/00-get-started/BlazingPizza.Client/BlazingPizza.Client.csproj
@@ -2,7 +2,7 @@
$(TargetFrameworkVersion)
- true
+ true
diff --git a/save-points/00-get-started/BlazingPizza.ComponentsLibrary/BlazingPizza.ComponentsLibrary.csproj b/save-points/00-get-started/BlazingPizza.ComponentsLibrary/BlazingPizza.ComponentsLibrary.csproj
index cb996b1b..b50155b9 100644
--- a/save-points/00-get-started/BlazingPizza.ComponentsLibrary/BlazingPizza.ComponentsLibrary.csproj
+++ b/save-points/00-get-started/BlazingPizza.ComponentsLibrary/BlazingPizza.ComponentsLibrary.csproj
@@ -2,7 +2,7 @@
$(TargetFrameworkVersion)
- true
+ true
diff --git a/save-points/00-get-started/BlazingPizza.ComponentsLibrary/LocalStorage.cs b/save-points/00-get-started/BlazingPizza.ComponentsLibrary/LocalStorage.cs
index 1b91cef9..9f391bea 100644
--- a/save-points/00-get-started/BlazingPizza.ComponentsLibrary/LocalStorage.cs
+++ b/save-points/00-get-started/BlazingPizza.ComponentsLibrary/LocalStorage.cs
@@ -4,12 +4,12 @@ namespace BlazingPizza.ComponentsLibrary;
public static class LocalStorage
{
- public static ValueTask GetAsync(IJSRuntime jsRuntime, string key)
- => jsRuntime.InvokeAsync("blazorLocalStorage.get", key);
+ public static ValueTask GetAsync(IJSRuntime jsRuntime, string key)
+ => jsRuntime.InvokeAsync("blazorLocalStorage.get", key);
- public static ValueTask SetAsync(IJSRuntime jsRuntime, string key, object value)
- => jsRuntime.InvokeVoidAsync("blazorLocalStorage.set", key, value);
+ public static ValueTask SetAsync(IJSRuntime jsRuntime, string key, object value)
+ => jsRuntime.InvokeVoidAsync("blazorLocalStorage.set", key, value);
- public static ValueTask DeleteAsync(IJSRuntime jsRuntime, string key)
- => jsRuntime.InvokeVoidAsync("blazorLocalStorage.delete", key);
+ public static ValueTask DeleteAsync(IJSRuntime jsRuntime, string key)
+ => jsRuntime.InvokeVoidAsync("blazorLocalStorage.delete", key);
}