Enable TreatWarningsAsErrors for Emby.Data in Release

This commit is contained in:
Bond_009
2020-08-22 23:29:54 +02:00
parent 92c491397e
commit 4243a17c86
51 changed files with 169 additions and 4 deletions

View File

@@ -1,3 +1,5 @@
#pragma warning disable CS1591
using System;
using System.ComponentModel.DataAnnotations;
@@ -28,6 +30,8 @@ namespace Jellyfin.Data.Entities
/// </summary>
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
/// <param name="dateadded">The date the object was added.</param>
/// <param name="datemodified">The date the object was last modified.</param>
/// <param name="_company0"></param>
public CompanyMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0)
{
@@ -60,6 +64,8 @@ namespace Jellyfin.Data.Entities
/// </summary>
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
/// <param name="dateadded">The date the object was added.</param>
/// <param name="datemodified">The date the object was last modified.</param>
/// <param name="_company0"></param>
public static CompanyMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0)
{