Bond_009
a9ef103c95
Add IDisposableAnalyzers to more projects
1 year ago
Stepan Goremykin
96c3bde346
Remove redundant nullable directive
1 year ago
Stepan Goremykin
fdef9356b9
Use null propagation
1 year ago
Bond_009
5677566a41
Enable nullable for more files
1 year ago
Bond_009
b366dc2e6e
Use ArgumentException.ThrowIfNullOrEmpty
2 years ago
Bond_009
52194f56b5
Replace != null with is not null
2 years ago
Bond_009
c7d50d640e
Replace == null with is null
2 years ago
Bond_009
a9a5fcde81
Use ArgumentNullException.ThrowIfNull helper method
...
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);
```
2 years ago
Bond_009
cafeedcadf
Rework SsdpHttpClient
3 years ago
Bond-009
03f1eff21a
Implement TransportState according to spec ( #7426 )
3 years ago
Bond_009
05836c8cd3
Fix warning SA1414 and CA1849
3 years ago
Bond_009
ea8f40e84a
More cleanup
3 years ago
Cody Robibero
9234e5bf80
Remove all instances of en-US culture
3 years ago
Bond_009
501de7b6dc
Enable nullable in more files
3 years ago
Claus Vium
75704effae
Merge pull request #5659 from ssenart/feature/5644-dlna_next_track
4 years ago
Claus Vium
2f9034c94b
Update Emby.Dlna/PlayTo/Device.cs
4 years ago
Claus Vium
e134a3677c
Apply suggestions from code review
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
4 years ago
Bond_009
06caee28b7
Enable nullable reference types for Emby.Dlna
4 years ago
Stéphane Senart
a7c82b2681
[5644] [DLNA] [Music] Next track command from any DLNA device does not do anything.
4 years ago
BaronGreenback
4bd345fbab
DLNA Exception catching
4 years ago
dkanada
13d65318eb
Merge pull request #5223 from Bond-009/minor10
...
Minor improvements
4 years ago
Bond_009
e9f22303a4
Properly forward cancellationTokens
4 years ago
Bond_009
65bab55ca0
Minor improvements
4 years ago
Bond_009
e4fd61411f
Minor improvements
4 years ago
BaronGreenback
7a26f64c7b
Update Device.cs
4 years ago
Greenback
e51ddd326c
Fixes spelling.
4 years ago
crobibero
8215f15c45
migrate to IHttpClientFactory in Emby.Dlna
4 years ago
Bond_009
170e434f92
Fix all warnings in Emby.Dlna
4 years ago
David
1337a0dcec
Code review
4 years ago
David
ca2b36bdb0
Reduce warnings in Emby.Dlna
4 years ago
Bond_009
2b400c99ef
Fix warnings
4 years ago
Bond_009
65453c0a84
Fix build and more Append calls
4 years ago
telans
7f307f9082
brace multiline if statements
4 years ago
telans
8e3d874802
remove regions
4 years ago
Bond-009
9af6eda0b4
Merge pull request #3343 from telans/comment-stops
...
Add full stop at end of comments (SA1629)
4 years ago
telans
247f9c61e6
fix SA1513/SA1516
4 years ago
telans
9018f8d8be
Add full stop at end of comments (SA1629)
4 years ago
telans
3d9049ef08
fix SA1508
4 years ago
telans
acd4389653
fix SA1005
4 years ago
Bond_009
10e381f66f
Fix some 'bugs' flagged by sonarcloud
5 years ago
Bond-009
64692af1a2
Update Device.cs
5 years ago
Bond-009
91b17e7289
Update Device.cs
5 years ago
Bond-009
ad0e2e42e6
Update Device.cs
5 years ago
Bond_009
3161e85f76
Address comments
5 years ago
Bond-009
f6c9a44703
Update Device.cs
5 years ago
Bond_009
8a566dfe73
Fix build
5 years ago
Bond_009
be8ba96183
Fix some warnings
5 years ago
Bond_009
07cc4be6a7
Fix some warnings
...
* 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
5 years ago
Bond_009
82112b6788
Improvements to dlna server
...
* Improve response writer
* Add analyzers
* Error on warnings in release mode
* Disable doc warnings
5 years ago
Bond_009
37ea50a572
Reduce the amount of exceptions thrown
6 years ago