Skip to content

Commit

Permalink
Version 5.1.7
Browse files Browse the repository at this point in the history
## Version 5.1.7 - December 6, 2019

  - **Fixed:** Updated nuget dependencies such as "System.Drawing.Common" package (packages part of Windows Compatibility Pack) to the
    latest 4.7.0 for stability. For instance 4.5.1 seems to have a bug;
    Intermittent error when converting images to PDF (especially when multi-threads are used):
    "Attempted to read or write protected memory."

  - **Improved:** New product icon for nuget package and docs.
  • Loading branch information
GleamTech committed Dec 6, 2019
1 parent 15ae34e commit a0fb055
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 23 deletions.
17 changes: 12 additions & 5 deletions Examples/AspNetCoreCS/AspNetCoreCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,26 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="4.0.5" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="5.1.6" />
<PackageReference Include="GleamTech.Common" Version="4.0.6" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="5.1.7" />
</ItemGroup>

<ItemGroup>
<!-- These package references are added because GleamTech DLL's are not added via PackageReference so dependencies needs to be resolved manually -->
<PackageReference Include="System.Security.Principal.Windows">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Drawing.Common">
<Version>4.5.1</Version>
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.Win32.Registry">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Text.Encoding.CodePages">
<Version>4.5.1</Version>
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Security.Permissions">
<Version>4.5.0</Version>
<Version>4.7.0</Version>
</PackageReference>
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="4.0.5" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="5.1.6" />
<PackageReference Include="GleamTech.Common" Version="4.0.6" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="5.1.7" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetMvcCS/AspNetMvcCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.4.0.5\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.0.6\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.5.1.6\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.5.1.7\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetMvcCS/Packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
<package id="GleamTech.Common" version="4.0.5" />
<package id="GleamTech.DocumentUltimate" version="5.1.6" />
<package id="GleamTech.Common" version="4.0.6" />
<package id="GleamTech.DocumentUltimate" version="5.1.7" />
</packages>
4 changes: 2 additions & 2 deletions Examples/AspNetMvcVB/AspNetMvcVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.4.0.5\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.0.6\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.5.1.6\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.5.1.7\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetMvcVB/Packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
<package id="GleamTech.Common" version="4.0.5" />
<package id="GleamTech.DocumentUltimate" version="5.1.6" />
<package id="GleamTech.Common" version="4.0.6" />
<package id="GleamTech.DocumentUltimate" version="5.1.7" />
</packages>
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.4.0.5\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.0.6\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.5.1.6\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.5.1.7\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsCS/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="GleamTech.Common" version="4.0.5" />
<package id="GleamTech.DocumentUltimate" version="5.1.6" />
<package id="GleamTech.Common" version="4.0.6" />
<package id="GleamTech.DocumentUltimate" version="5.1.7" />
</packages>
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsVB/AspNetWebFormsVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.4.0.5\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.0.6\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.DocumentUltimate">
<HintPath>..\packages\GleamTech.DocumentUltimate.5.1.6\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.DocumentUltimate.5.1.7\lib\net40\GleamTech.DocumentUltimate.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsVB/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="GleamTech.Common" version="4.0.5" />
<package id="GleamTech.DocumentUltimate" version="5.1.6" />
<package id="GleamTech.Common" version="4.0.6" />
<package id="GleamTech.DocumentUltimate" version="5.1.7" />
</packages>

0 comments on commit a0fb055

Please sign in to comment.