API
diff --git a/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates05CreateProjectPage.razor.cs b/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates05CreateProjectPage.razor.cs
index c136de7780..fb60cba0f9 100644
--- a/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates05CreateProjectPage.razor.cs
+++ b/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates05CreateProjectPage.razor.cs
@@ -23,6 +23,12 @@ public partial class Templates05CreateProjectPage
Value = false,
Default = false,
};
+
+ private Parameter
notification = new()
+ {
+ Value = false,
+ Default = false,
+ };
private Parameter appInsight = new()
{
@@ -152,6 +158,11 @@ private string GetFinalCommand()
finalCommand.Append(GetOfflineDbCommand());
}
+ if (notification.IsModified)
+ {
+ finalCommand.Append(GetNotificationCommand());
+ }
+
if (appInsight.IsModified)
{
finalCommand.Append(GetAppInsightsCommand());
@@ -215,6 +226,11 @@ private string GetOfflineDbCommand()
return $"--offlineDb {offlineDb.Value.ToString().ToLowerInvariant()} ";
}
+ private string GetNotificationCommand()
+ {
+ return $"--notification {notification.Value.ToString().ToLowerInvariant()} ";
+ }
+
private string GetAppInsightsCommand()
{
return $"--appInsights {appInsight.Value.ToString().ToLowerInvariant()} ";
diff --git a/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates06RunProjectPage.razor b/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates06RunProjectPage.razor
index 75857c41d8..fbe6c60812 100644
--- a/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates06RunProjectPage.razor
+++ b/src/Websites/Platform/src/Bit.Websites.Platform.Client/Pages/Templates/Templates06RunProjectPage.razor
@@ -73,8 +73,7 @@
Running in Blazor WebAssembly Standalone Mode
- To run the project in Blazor WebAssembly Standalone mode, set BlazorWebAssemblyStandalone to true in the Directory.Build.props file.
- Additionally, run Client.Web in addition to server project.
+ To run the project in Blazor WebAssembly Standalone mode, run Client.Web in addition to server project.