mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-26 03:04:53 +00:00
make controller project portable
This commit is contained in:
parent
edbe28d9fc
commit
ef6b90b8e6
441 changed files with 21169 additions and 18588 deletions
14
MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
Normal file
14
MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using Patterns.Logging;
|
||||
|
||||
namespace MediaBrowser.Common.Implementations.IO
|
||||
{
|
||||
public class WindowsFileSystem : ManagedFileSystem
|
||||
{
|
||||
public WindowsFileSystem(ILogger logger)
|
||||
: base(logger, true, true)
|
||||
{
|
||||
AddShortcutHandler(new LnkShortcutHandler());
|
||||
EnableFileSystemRequestConcat = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue