Merge pull request #1884 from Bond-009/netcore3.0

Move to netcore3.0
This commit is contained in:
Vasily
2019-10-15 15:35:37 +03:00
committed by GitHub
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)

View File

@@ -42,7 +42,7 @@
</ItemGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>