We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa441c2 commit a48219cCopy full SHA for a48219c
src/BootstrapBlazor/Services/MockWasmHostEnvironment.cs
@@ -10,7 +10,11 @@ namespace BootstrapBlazor.Components;
10
11
class MockWasmHostEnvironment : IHostEnvironment
12
{
13
+#if DEBUG
14
+ public string EnvironmentName { get; set; } = "Development";
15
+#else
16
public string EnvironmentName { get; set; } = "Production";
17
+#endif
18
19
public string ApplicationName { get; set; } = "BootstrapBlazor";
20
0 commit comments