add multi targeting frameworks in the same project for net 4.5 through net 7.0 and net standard 2.0

This commit is contained in:
Eliot Jones
2019-01-06 10:38:32 +00:00
parent 16b0260d68
commit 575953c0ed
14 changed files with 297 additions and 238 deletions

View File

@@ -2,6 +2,8 @@
namespace UglyToad.PdfPig.Fonts.CompactFontFormat
{
using Util;
internal class CompactFontFormatIndexReader
{
public CompactFontFormatIndex ReadDictionaryData(CompactFontFormatData data)
@@ -43,7 +45,7 @@ namespace UglyToad.PdfPig.Fonts.CompactFontFormat
if (count == 0)
{
return Array.Empty<int>();
return EmptyArray<int>.Instance;
}
var offsetSize = data.ReadOffsize();