diff options
author | crupest <crupest@outlook.com> | 2019-04-24 00:22:25 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-04-24 00:22:25 +0800 |
commit | 3d6938ca60691f73bc0b570e7ca4af4f8251741c (patch) | |
tree | f0b1f683254cdd80f20ea84ea6e044e80ef61fdd /Timeline/EnvironmentConstants.cs | |
parent | 94cb3d601af2f658f93f8092f39c326c90c8d13f (diff) | |
download | timeline-3d6938ca60691f73bc0b570e7ca4af4f8251741c.tar.gz timeline-3d6938ca60691f73bc0b570e7ca4af4f8251741c.tar.bz2 timeline-3d6938ca60691f73bc0b570e7ca4af4f8251741c.zip |
Add ObjectExists implementation in cos. Remove Test host environment.
Diffstat (limited to 'Timeline/EnvironmentConstants.cs')
-rw-r--r-- | Timeline/EnvironmentConstants.cs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Timeline/EnvironmentConstants.cs b/Timeline/EnvironmentConstants.cs deleted file mode 100644 index 5ffc3623..00000000 --- a/Timeline/EnvironmentConstants.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Microsoft.AspNetCore.Hosting; - -namespace Timeline -{ - public static class EnvironmentConstants - { - public const string TestEnvironmentName = "Test"; - - public static bool IsTest(this IHostingEnvironment environment) - { - return environment.EnvironmentName == TestEnvironmentName; - } - } -} |