aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/PlayTo/TransportCommands.cs
AgeCommit message (Collapse)Author
2023-11-15Remove Emby.DlnaPatrick Barron
2023-04-06Use TryGetValueStepan Goremykin
2022-12-05Replace != null with is not nullBond_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-12-27More cleanupBond_009
2021-05-07Enable nullable reference types for Emby.DlnaBond_009
2021-03-06Use XDocument.LoadAsync instead of XDocument.ParseBond_009
2020-12-02Minor improvementsBond_009
2020-08-20Fix all warnings in Emby.DlnaBond_009
2020-08-19Fix warningsBond_009
2020-02-23Fix some warningsBond_009
* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
2020-01-22Improvements to dlna serverBond_009
* Improve response writer * Add analyzers * Error on warnings in release mode * Disable doc warnings
2019-03-01Don't mix LINQ and roreach loops for readabilityBond-009
2019-01-13ReSharper Reformat: Properties to expression bodied form.Erwin de Haan
2019-01-13Find+Sed BOM removal *.cs: BDInfo-Emby.XmlTvErwin de Haan
2019-01-13Visual Studio Reformat: Emby.DlnaErwin de Haan
2019-01-11Merge branch 'dev' into code-cleanupErwin 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.
2019-01-07remove trailing whitespacehawken
2018-09-12Update to 3.5.2 and .net core 2.1stefan
2016-10-29rework dlna projectLuke Pulverenti
2016-10-29rework dlna projectLuke Pulverenti