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 e34d7cd commit 7ee96b7Copy full SHA for 7ee96b7
src/Files.App/Helpers/Application/AppLifecycleHelper.cs
@@ -29,7 +29,12 @@ public static class AppLifecycleHelper
29
/// <summary>
30
/// Gets the value that provides application environment or branch name.
31
/// </summary>
32
- public static AppEnvironment AppEnvironment { get; } = AppEnvironment.Dev;
+ public static AppEnvironment AppEnvironment { get; } =
33
+#if DEBUG
34
+ AppEnvironment.Dev;
35
+#else
36
+ "cd_app_env_placeholder";
37
+#endif
38
39
40
/// Gets application package version.
0 commit comments