Move to netcore3.0

This commit is contained in:
Bond_009
2019-10-11 18:22:29 +02:00
parent d64b43286e
commit 516933aab5
8 changed files with 8 additions and 42 deletions

View File

@@ -34,8 +34,7 @@ namespace Emby.Server.Implementations.Data
public static Guid ReadGuidFromBlob(this IResultSetValue result)
{
// TODO: Remove ToArray when upgrading to netstandard2.1
return new Guid(result.ToBlob().ToArray());
return new Guid(result.ToBlob());
}
public static string ToDateTimeParamValue(this DateTime dateValue)