aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/IO/FileData.cs
AgeCommit message (Collapse)Author
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_009
Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ```
2021-11-09Fix some warningsBond_009
609 left
2021-06-06Remove warninigs from MediaBrowser.Controller (Part 3) (#6078)Cody Robibero
Co-authored-by: Bond-009 <bond.009@outlook.com>
2020-09-28Fix SA1513, SA1514, SA1507, and SA1508Matt Montgomery
2020-08-22Enable TreatWarningsAsErrors for MediaBrowser.Controller in ReleaseBond_009
2020-06-16fix SA1513/SA1516telans
2020-06-15fix SA1508telans
2020-06-15fix SA1005telans
2020-06-05Use typed logger where possiblecrobibero
2019-01-13ReSharper conform to 'var' settingsErwin de Haan
2019-01-13Find+Sed BOM removal *.cs: Jellyfin.Server-MediaBrowser.ControllerErwin de Haan
2019-01-13Visual Studio Reformat: MediaBrowser.ControllerErwin de Haan
2019-01-10Mayor code cleanupErwin de Haan
Add Argument*Exceptions now use proper nameof operators. Added exception messages to quite a few Argument*Exceptions. Fixed rethorwing to be proper syntax. Added a ton of null checkes. (This is only a start, there are about 500 places that need proper null handling) Added some TODOs to log certain exceptions. Fix sln again. Fixed all AssemblyInfo's and added proper copyright (where I could find them) We live in *current year*. Fixed the use of braces. Fixed a ton of properties, and made a fair amount of functions static that should be and can be static. Made more Methods that should be static static. You can now use static to find bad functions! Removed unused variable. And added one more proper XML comment.
2018-12-30Fix exception loggingBond_009
2018-12-30Use Microsoft.Extensions.Logging abstractionBond_009
2018-12-27Add GPL modulesAndrew Rabert
2018-09-12Update to 3.5.2 and .net core 2.1stefan
2017-08-24update active recordingsLuke Pulverenti
2017-08-20update m3u tunerLuke Pulverenti
2017-08-09consolidate emby.server.core into emby.server.implementationsLuke Pulverenti
2017-05-26update GetItems methodLuke Pulverenti
2016-10-25make controller project portableLuke Pulverenti
2016-03-27Remove unused code...Sven Van den brande
2015-11-30add error handling when resolving shortcutsLuke Pulverenti
2015-11-12update use of FileAttributesLuke Pulverenti
2015-10-04continue file system reworkLuke Pulverenti
2015-10-03begin file system reworkLuke Pulverenti
2014-10-25connect updatesLuke Pulverenti
2014-02-11implement fetcher priority adjustmentLuke Pulverenti
2013-10-31replace file system calls with IFileSystem when neededLuke Pulverenti
2013-10-30fixes #567 - Deprecate native shortcut codeLuke Pulverenti
2013-09-17allow request header overridesLuke Pulverenti
2013-08-25fixes around saving music brainz id's to xmlLuke Pulverenti
2013-07-12added collection typeLuke Pulverenti
2013-06-20use linq on file system ops when possibleLuke Pulverenti
2013-06-19reduce memory usage from file system infoLuke Pulverenti
2013-06-11fixed issue of not seeing network sharesLuke Pulverenti
2013-06-10removed some preemptive file filteringLuke Pulverenti
2013-05-31created a separate gallery pageLuke Pulverenti
2013-05-28Add warning message to collection resolution when not foundEric Reed
2013-05-26fixed user collections not getting populatedLuke Pulverenti
2013-05-26fixed issue preventing drive contents from being readLuke Pulverenti
2013-05-10fixes #255 - Access to the path is deniedLuke Pulverenti
2013-04-28fixes #200 - MB3 Locking Folders for a long timeLuke Pulverenti
2013-04-19tighter control of shortcutsLuke Pulverenti
2013-02-23moved some network code to the networking assemblyLukePulverenti
2013-02-21Removed System.Windows.Forms dependancy from Common. Almost done removing ↵LukePulverenti
NLog dependancy.
2013-02-21extracted more logging dependanciesLukePulverenti
2013-02-21removed static loggerLukePulverenti