Merge pull request #436 from UglyToad/net6-target-framework

Net6 target framework
This commit is contained in:
Eliot Jones 2022-04-04 07:39:15 -04:00 committed by GitHub
commit d2864f761a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 85 additions and 32 deletions

View File

@ -13,9 +13,11 @@ jobs:
- uses: actions/checkout@master
- name: Set up dotnet core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v2
with:
dotnet-version: "2.1.x"
dotnet-version: |
2.1.x
6.0.x
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2

View File

@ -30,9 +30,11 @@ jobs:
- uses: actions/checkout@master
- name: Set up dotnet core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v2
with:
dotnet-version: "2.1.x"
dotnet-version: |
2.1.x
6.0.x
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2

View File

@ -45,7 +45,7 @@ Open `.\src\UglyToad.PdfPig\UglyToad.PdfPig.csproj` in a text editor and change:
```
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47;net6.0</TargetFrameworks>
<PackageId>PdfPig</PackageId>
...
```

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>0.1.6-alpha001</Version>
<IsTestProject>False</IsTestProject>

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>0.1.6-alpha001</Version>
<IsTestProject>False</IsTestProject>

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>0.1.6-alpha001</Version>
<IsTestProject>False</IsTestProject>

View File

@ -23,7 +23,9 @@ namespace UglyToad.PdfPig.Tests.Encryption
var output = AesEncryptionHelper.Decrypt(data, key);
Assert.Equal("D:20180808103317-07'00'", OtherEncodings.BytesAsLatin1String(output));
var actual = OtherEncodings.BytesAsLatin1String(output);
Assert.Equal("D:20180808103317-07'00'", actual);
}
}
}

View File

@ -5,6 +5,8 @@ using Xunit;
namespace UglyToad.PdfPig.Tests.Fonts.SystemFonts
{
using PdfPig.Core;
public class Linux
{
public static IEnumerable<object[]> DataExtract => new[]
@ -12,19 +14,43 @@ namespace UglyToad.PdfPig.Tests.Fonts.SystemFonts
new object[]
{
"90 180 270 rotated.pdf",
new object[][]
{
new object[] { "[(x:53.88, y:759.48), 2.495859375, 0]", 0.0 },
new object[] { "[(x:514.925312502883, y:744.099765720344), 6.83203125, 7.94531249999983]", -90.0 },
new object[] { "[(x:512.505390717836, y:736.603703191305), 5.1796875, 5.68945312499983]", -90.0 },
new object[] { "[(x:512.505390785898, y:730.931828191305), 3.99609375, 5.52539062499994]", -90.0 },
new ExpectedLetterData[]
{
new ExpectedLetterData
{
TopLeft = new PdfPoint(53.88, 759.48),
Width = 2.495859375,
Height = 0,
Rotation = 0
},
new ExpectedLetterData
{
TopLeft = new PdfPoint(514.925312502883, 744.099765720344),
Width = 6.83203125,
Height = 7.94531249999983,
Rotation = -90
},
new ExpectedLetterData
{
TopLeft = new PdfPoint(512.505390717836, 736.603703191305),
Width = 5.1796875,
Height = 5.68945312499983,
Rotation = -90
},
new ExpectedLetterData
{
TopLeft = new PdfPoint(512.505390785898, 730.931828191305),
Width = 3.99609375,
Height = 5.52539062499994,
Rotation = -90
},
}
},
};
[SkippableTheory]
[MemberData(nameof(DataExtract))]
public void GetCorrectBBoxLinux(string name, object[][] expected)
public void GetCorrectBBoxLinux(string name, ExpectedLetterData[] expected)
{
// success on Windows but LinuxSystemFontLister cannot find the 'TimesNewRomanPSMT' font
var font = SystemFontFinder.Instance.GetTrueTypeFont("TimesNewRomanPSMT");
@ -36,13 +62,28 @@ namespace UglyToad.PdfPig.Tests.Fonts.SystemFonts
var page = document.GetPage(1);
for (int i = 0; i < expected.Length; i++)
{
string bbox = (string)expected[i][0];
var rotation = (double)expected[i][1];
var current = page.Letters[i];
Assert.Equal(bbox, current.GlyphRectangle.ToString());
Assert.Equal(rotation, current.GlyphRectangle.Rotation, 3);
var expectedData = expected[i];
var current = page.Letters[i];
Assert.Equal(expectedData.TopLeft.X, current.GlyphRectangle.TopLeft.X, 7);
Assert.Equal(expectedData.TopLeft.Y, current.GlyphRectangle.TopLeft.Y, 7);
Assert.Equal(expectedData.Width, current.GlyphRectangle.Width, 7);
Assert.Equal(expectedData.Height, current.GlyphRectangle.Height, 7);
Assert.Equal(expectedData.Rotation, current.GlyphRectangle.Rotation, 3);
}
}
}
public class ExpectedLetterData
{
public PdfPoint TopLeft { get; set; }
public double Width { get; set; }
public double Height { get; set; }
public double Rotation { get; set; }
}
}
}

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFrameworks>netcoreapp2.0;net6.0</TargetFrameworks>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
<DebugType>full</DebugType>

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>0.1.6-alpha001</Version>
<IsTestProject>False</IsTestProject>

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>0.1.6-alpha001</Version>
<IsTestProject>False</IsTestProject>

View File

@ -1,6 +1,7 @@
namespace UglyToad.PdfPig.Encryption
{
using System;
using System.Diagnostics;
using System.IO;
using System.Security.Cryptography;
@ -20,7 +21,7 @@
var iv = new byte[16];
Array.Copy(data, iv, iv.Length);
using (var rijndael = Rijndael.Create())
{
rijndael.Key = finalKey;
@ -28,6 +29,11 @@
var buffer = new byte[256];
if (data.Length > 256)
{
Debugger.Break();
}
using (var decryptor = rijndael.CreateDecryptor(rijndael.Key, rijndael.IV))
using (var input = new MemoryStream(data))
using (var output = new MemoryStream())
@ -36,15 +42,15 @@
using (var cryptoStream = new CryptoStream(input, decryptor, CryptoStreamMode.Read))
{
int read;
while ((read = cryptoStream.Read(buffer, 0, buffer.Length)) != -1)
do
{
output.Write(buffer, 0, read);
read = cryptoStream.Read(buffer, 0, buffer.Length);
if (read < buffer.Length)
if (read > 0)
{
break;
output.Write(buffer, 0, read);
}
}
} while (read > 0);
return output.ToArray();
}

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>0.1.6-alpha001</Version>
<IsTestProject>False</IsTestProject>

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net451;net452;net46;net461;net462;net47;net6.0</TargetFrameworks>
<PackageId>PdfPig</PackageId>
<DebugType>full</DebugType>
<Authors>UglyToad</Authors>