diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-04-08 14:32:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-08 14:32:24 -0400 |
| commit | e25c538ac70b014f9872d3fde18339a8c0d9bcbf (patch) | |
| tree | 52d855c26d5f9439b990d8d73ae72e5849014643 /Emby.Common.Implementations | |
| parent | b7d0c71bb6627b42fb1868f2ecd88da6f4023d21 (diff) | |
| parent | 78eebc04500e63c5a6b5e79cc52b1825940c40df (diff) | |
Merge pull request #2569 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Common.Implementations')
| -rw-r--r-- | Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs b/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs index 5da1ae2dc..ad6e35700 100644 --- a/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs +++ b/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Threading.Tasks; @@ -75,6 +76,14 @@ namespace Emby.Common.Implementations.EnvironmentInfo } } + public char PathSeparator + { + get + { + return Path.PathSeparator; + } + } + public MediaBrowser.Model.System.Architecture SystemArchitecture { get |
