You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 28, 2022. It is now read-only.
/// Initializes a new instance of the <see cref="EpisodeFileOrganizer"/> class.
42
+
/// </summary>
43
+
[SuppressMessage("StyleCop.CSharp.DocumentationRules","SA1611:Element parameters should be documented",Justification="Parameter types/names are self-documenting")]
Copy file name to clipboardexpand all lines: Emby.AutoOrganize/Core/Extensions.cs
+4-1
Original file line number
Diff line number
Diff line change
@@ -21,15 +21,18 @@ public static class ConfigurationExtension
21
21
/// <summary>
22
22
/// Perform a one-time migration of smart match info from the plugin configuration to the SQLite database.
23
23
/// </summary>
24
-
[SuppressMessage("Compiler","CS0618:Type or member is obsolete",Justification="This method is used to migrates configuration away from the obsolete property.")]
24
+
/// <param name="manager">The manager to use for migrating the configuration.</param>
25
+
/// <param name="service">The file organization service to use to save the migrated <see cref="SmartMatchResult"/> records.</param>
@@ -33,6 +35,7 @@ public class FileOrganizationService : IFileOrganizationService
33
35
/// <summary>
34
36
/// Initializes a new instance of the <see cref="FileOrganizationService"/> class.
35
37
/// </summary>
38
+
[SuppressMessage("StyleCop.CSharp.DocumentationRules","SA1611:Element parameters should be documented",Justification="Parameter names/types are self-documenting.")]
Copy file name to clipboardexpand all lines: Emby.AutoOrganize/Core/MovieFileOrganizer.cs
+20
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
usingSystem;
2
2
usingSystem.Collections.Generic;
3
+
usingSystem.Diagnostics.CodeAnalysis;
3
4
usingSystem.Globalization;
4
5
usingSystem.IO;
5
6
usingSystem.Linq;
@@ -19,6 +20,9 @@
19
20
20
21
namespaceEmby.AutoOrganize.Core
21
22
{
23
+
/// <summary>
24
+
/// Service used for organizing movie media files.
25
+
/// </summary>
22
26
publicclassMovieFileOrganizer
23
27
{
24
28
privatereadonlyILibraryMonitor_libraryMonitor;
@@ -32,6 +36,7 @@ public class MovieFileOrganizer
32
36
/// <summary>
33
37
/// Initializes a new instance of the <see cref="MovieFileOrganizer"/> class.
34
38
/// </summary>
39
+
[SuppressMessage("StyleCop.CSharp.DocumentationRules","SA1611:Element parameters should be documented",Justification="Parameter types/names are self-documenting")]
/// Initializes a new instance of the <see cref="MovieFolderOrganizer"/> class.
32
+
/// </summary>
33
+
[SuppressMessage("StyleCop.CSharp.DocumentationRules","SA1611:Element parameters should be documented",Justification="Parameter types/names are self-documenting")]
@@ -24,6 +28,7 @@ public class OrganizerScheduledTask : IScheduledTask, IConfigurableScheduledTask
24
28
/// <summary>
25
29
/// Initializes a new instance of the <see cref="OrganizerScheduledTask"/> class.
26
30
/// </summary>
31
+
[SuppressMessage("StyleCop.CSharp.DocumentationRules","SA1611:Element parameters should be documented",Justification="Parameter types/names are self-documenting")]
/// Initializes a new instance of the <see cref="TvFolderOrganizer"/> class.
32
+
/// </summary>
33
+
[SuppressMessage("StyleCop.CSharp.DocumentationRules","SA1611:Element parameters should be documented",Justification="Parameter types/names are self-documenting")]
0 commit comments