Skip to content

Commit 7ee96b7

Browse files
committed
Update AppLifecycleHelper.cs
1 parent e34d7cd commit 7ee96b7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Files.App/Helpers/Application/AppLifecycleHelper.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ public static class AppLifecycleHelper
2929
/// <summary>
3030
/// Gets the value that provides application environment or branch name.
3131
/// </summary>
32-
public static AppEnvironment AppEnvironment { get; } = AppEnvironment.Dev;
32+
public static AppEnvironment AppEnvironment { get; } =
33+
#if DEBUG
34+
AppEnvironment.Dev;
35+
#else
36+
"cd_app_env_placeholder";
37+
#endif
3338

3439
/// <summary>
3540
/// Gets application package version.

0 commit comments

Comments
 (0)