Enable TreatWarningsAsErrors for MediaBrowser.MediaEncoding

This commit is contained in:
Bond-009
2020-08-04 16:20:52 +02:00
parent 237cb4e383
commit 18efa25a6f
14 changed files with 34 additions and 3 deletions

View File

@@ -3,6 +3,9 @@ using System.Collections.Generic;
namespace MediaBrowser.MediaEncoding.Probing
{
/// <summary>
/// Class containing helper methods for working with FFprobe output.
/// </summary>
public static class FFProbeHelpers
{
/// <summary>

View File

@@ -1,3 +1,5 @@
#pragma warning disable CS1591
using System.Collections.Generic;
using System.Text.Json.Serialization;

View File

@@ -269,6 +269,10 @@ namespace MediaBrowser.MediaEncoding.Probing
[JsonPropertyName("loro_surmixlev")]
public string LoroSurmixlev { get; set; }
/// <summary>
/// Gets or sets the field_order.
/// </summary>
/// <value>The loro_surmixlev.</value>
[JsonPropertyName("field_order")]
public string FieldOrder { get; set; }

View File

@@ -1,3 +1,5 @@
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Globalization;