diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-30 02:36:14 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-30 02:36:14 -0400 |
| commit | b5673f4e16ca6c05b2efe47b1f18804253fd0f43 (patch) | |
| tree | 52bad8a507a56f7c7712e93591bdfe801310f458 /BDInfo/TSInterleavedFile.cs | |
| parent | fd04fddca0c9d5cda336efb5b4e02e117913ce37 (diff) | |
update bdinfo portable targeting
Diffstat (limited to 'BDInfo/TSInterleavedFile.cs')
| -rw-r--r-- | BDInfo/TSInterleavedFile.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/BDInfo/TSInterleavedFile.cs b/BDInfo/TSInterleavedFile.cs index 9cc338df7..44a16bbaa 100644 --- a/BDInfo/TSInterleavedFile.cs +++ b/BDInfo/TSInterleavedFile.cs @@ -18,6 +18,7 @@ //============================================================================= using System.IO; +using MediaBrowser.Model.IO; // TODO: Do more interesting things here... @@ -25,10 +26,10 @@ namespace BDInfo { public class TSInterleavedFile { - public FileInfo FileInfo = null; + public FileSystemMetadata FileInfo = null; public string Name = null; - public TSInterleavedFile(FileInfo fileInfo) + public TSInterleavedFile(FileSystemMetadata fileInfo) { FileInfo = fileInfo; Name = fileInfo.Name.ToUpper(); |
