From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Controller/IServerApplicationPaths.cs | 114 --------------------- 1 file changed, 114 deletions(-) delete mode 100644 MediaBrowser.Controller/IServerApplicationPaths.cs (limited to 'MediaBrowser.Controller/IServerApplicationPaths.cs') diff --git a/MediaBrowser.Controller/IServerApplicationPaths.cs b/MediaBrowser.Controller/IServerApplicationPaths.cs deleted file mode 100644 index 4ad1cf49a..000000000 --- a/MediaBrowser.Controller/IServerApplicationPaths.cs +++ /dev/null @@ -1,114 +0,0 @@ -using MediaBrowser.Common.Configuration; - -namespace MediaBrowser.Controller -{ - public interface IServerApplicationPaths : IApplicationPaths - { - /// - /// Gets the path to the base root media directory - /// - /// The root folder path. - string RootFolderPath { get; } - - /// - /// Gets the application resources path. This is the path to the folder containing resources that are deployed as part of the application - /// For example, this folder contains dashboard-ui and swagger-ui - /// - /// The application resources path. - string ApplicationResourcesPath { get; } - - /// - /// Gets the path to the default user view directory. Used if no specific user view is defined. - /// - /// The default user views path. - string DefaultUserViewsPath { get; } - - /// - /// Gets the path to localization data. - /// - /// The localization path. - string LocalizationPath { get; } - - /// - /// Gets the path to the Images By Name directory - /// - /// The images by name path. - string ItemsByNamePath { get; } - - /// - /// Gets the path to the People directory - /// - /// The people path. - string PeoplePath { get; } - - /// - /// Gets the path to the Genre directory - /// - /// The genre path. - string GenrePath { get; } - - /// - /// Gets the music genre path. - /// - /// The music genre path. - string MusicGenrePath { get; } - - /// - /// Gets the game genre path. - /// - /// The game genre path. - string GameGenrePath { get; } - - /// - /// Gets the path to the Studio directory - /// - /// The studio path. - string StudioPath { get; } - - /// - /// Gets the path to the Year directory - /// - /// The year path. - string YearPath { get; } - - /// - /// Gets the path to the General IBN directory - /// - /// The general path. - string GeneralPath { get; } - - /// - /// Gets the path to the Ratings IBN directory - /// - /// The ratings path. - string RatingsPath { get; } - - /// - /// Gets the media info images path. - /// - /// The media info images path. - string MediaInfoImagesPath { get; } - - /// - /// Gets the path to the user configuration directory - /// - /// The user configuration directory path. - string UserConfigurationDirectoryPath { get; } - - /// - /// Gets the transcoding temporary path. - /// - /// The transcoding temporary path. - string TranscodingTempPath { get; } - - /// - /// Gets the internal metadata path. - /// - /// The internal metadata path. - string InternalMetadataPath { get; } - - string ArtistsPath { get; } - - string GetTranscodingTempPath(); - } -} \ No newline at end of file -- cgit v1.2.3