Skip to content

Commit dbfd0d3

Browse files
committed
Version 9.4.0
## Version 9.4.0 - March 8, 2025 - **Changed:** Minimum supported .NET Core framework is changed from 2.1 to 3.1 as the "System.*" nuget package dependencies with version 6.x does not work on 2.1 (e.g. System.Runtime.CompilerServices.Unsafe 6.x needs minimum .NET Core 3.1). Note that ASP.NET Core 2.1 or 2.3 on .NET Framework 4.7.2+ project (legacy) is still supported. - **Improved:** Document Viewer: - **Improved:** Stability and performance of DICOM formats. - **Improved:** Stability and performance of image thumbnails, image viewer and video thumbnails.
1 parent f1a0df7 commit dbfd0d3

12 files changed

+87
-81
lines changed

Examples/AspNetCoreCS/AspNetCoreCS.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="GleamTech.Common" Version="6.3.1" />
13-
<PackageReference Include="GleamTech.FileUltimate" Version="9.3.4" />
12+
<PackageReference Include="GleamTech.Common" Version="6.4.0" />
13+
<PackageReference Include="GleamTech.FileUltimate" Version="9.4.0" />
1414
</ItemGroup>
1515

1616
<ItemGroup>
1717
<!-- These package references are added because GleamTech DLL's are not added via PackageReference so dependencies needs to be resolved manually -->
1818

1919
<!-- For GleamTech.Common -->
2020
<PackageReference Include="System.Runtime.Caching">
21-
<Version>5.0.0</Version>
21+
<Version>6.0.1</Version>
2222
</PackageReference>
2323
<PackageReference Include="System.Security.Principal.Windows">
2424
<Version>5.0.0</Version>

Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
44
<TargetFramework>net472</TargetFramework>
55
<AssemblyName>GleamTech.FileUltimateExamples.AspNetCoreOnNetFullCS</AssemblyName>
66
<RootNamespace>GleamTech.FileUltimateExamples.AspNetCoreOnNetFullCS</RootNamespace>
7+
<AspNetCoreModuleName>AspNetCoreModuleV2</AspNetCoreModuleName>
8+
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
79
</PropertyGroup>
810

911
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
12-
<PackageReference Include="Microsoft.AspNetCore.Session" Version="2.2.0" />
13-
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
12+
<PackageReference Include="Microsoft.AspNetCore" Version="2.3.0" />
13+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.3.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Session" Version="2.3.0" />
15+
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.3.0" />
1416
</ItemGroup>
1517

1618
<ItemGroup>
17-
<PackageReference Include="GleamTech.Common" Version="6.3.1" />
18-
<PackageReference Include="GleamTech.FileUltimate" Version="9.3.4" />
19+
<Reference Include="GleamTech.Common">
20+
<HintPath>..\..\..\ProductReferences\net472\GleamTech.Common.dll</HintPath>
21+
</Reference>
22+
<Reference Include="GleamTech.FileUltimate">
23+
<HintPath>..\..\..\ProductReferences\net472\GleamTech.FileUltimate.dll</HintPath>
24+
</Reference>
1925
</ItemGroup>
2026

2127
<ItemGroup>

Examples/AspNetMvcCS/AspNetMvcCS.csproj

+12-12
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@
4646
</PropertyGroup>
4747
<ItemGroup>
4848
<Reference Include="GleamTech.Common">
49-
<HintPath>..\packages\GleamTech.Common.6.3.1\lib\net472\GleamTech.Common.dll</HintPath>
49+
<HintPath>..\packages\GleamTech.Common.6.4.0\lib\net472\GleamTech.Common.dll</HintPath>
5050
</Reference>
5151
<Reference Include="GleamTech.FileUltimate">
52-
<HintPath>..\packages\GleamTech.FileUltimate.9.3.4\lib\net472\GleamTech.FileUltimate.dll</HintPath>
52+
<HintPath>..\packages\GleamTech.FileUltimate.9.4.0\lib\net472\GleamTech.FileUltimate.dll</HintPath>
5353
</Reference>
5454
<Reference Include="GleamTech.DocumentUltimate">
55-
<HintPath>..\packages\GleamTech.DocumentUltimate.7.3.4\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
55+
<HintPath>..\packages\GleamTech.DocumentUltimate.7.4.0\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
5656
</Reference>
5757
<Reference Include="GleamTech.ImageUltimate">
58-
<HintPath>..\packages\GleamTech.ImageUltimate.6.3.1\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
58+
<HintPath>..\packages\GleamTech.ImageUltimate.6.4.0\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
5959
</Reference>
6060
<Reference Include="GleamTech.VideoUltimate">
61-
<HintPath>..\packages\GleamTech.VideoUltimate.4.3.1\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
61+
<HintPath>..\packages\GleamTech.VideoUltimate.4.4.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
6262
</Reference>
6363
</ItemGroup>
6464
<ItemGroup>
@@ -85,22 +85,22 @@
8585
<HintPath>..\packages\Microsoft.Web.Infrastructure.2.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
8686
</Reference>
8787
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
88-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.9\lib\net45\System.Web.Helpers.dll</HintPath>
88+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.Helpers.dll</HintPath>
8989
</Reference>
90-
<Reference Include="System.Web.Mvc, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
91-
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.9\lib\net45\System.Web.Mvc.dll</HintPath>
90+
<Reference Include="System.Web.Mvc, Version=5.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
91+
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.3.0\lib\net45\System.Web.Mvc.dll</HintPath>
9292
</Reference>
9393
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
94-
<HintPath>..\packages\Microsoft.AspNet.Razor.3.2.9\lib\net45\System.Web.Razor.dll</HintPath>
94+
<HintPath>..\packages\Microsoft.AspNet.Razor.3.3.0\lib\net45\System.Web.Razor.dll</HintPath>
9595
</Reference>
9696
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
97-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.9\lib\net45\System.Web.WebPages.dll</HintPath>
97+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.dll</HintPath>
9898
</Reference>
9999
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
100-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.9\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
100+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
101101
</Reference>
102102
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
103-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.9\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
103+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
104104
</Reference>
105105
</ItemGroup>
106106
<ItemGroup>

Examples/AspNetMvcCS/Packages.config

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.AspNet.Mvc" version="5.2.9" targetFramework="net472" />
4-
<package id="Microsoft.AspNet.Razor" version="3.2.9" targetFramework="net472" />
5-
<package id="Microsoft.AspNet.WebPages" version="3.2.9" targetFramework="net472" />
3+
<package id="Microsoft.AspNet.Mvc" version="5.3.0" targetFramework="net472" />
4+
<package id="Microsoft.AspNet.Razor" version="3.3.0" targetFramework="net472" />
5+
<package id="Microsoft.AspNet.WebPages" version="3.3.0" targetFramework="net472" />
66
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net472" />
7-
<package id="GleamTech.Common" version="6.3.1" />
8-
<package id="GleamTech.VideoUltimate" version="4.3.1" />
9-
<package id="GleamTech.ImageUltimate" version="6.3.1" />
10-
<package id="GleamTech.DocumentUltimate" version="7.3.4" />
11-
<package id="GleamTech.FileUltimate" version="9.3.4" />
7+
<package id="GleamTech.Common" version="6.4.0" />
8+
<package id="GleamTech.VideoUltimate" version="4.4.0" />
9+
<package id="GleamTech.ImageUltimate" version="6.4.0" />
10+
<package id="GleamTech.DocumentUltimate" version="7.4.0" />
11+
<package id="GleamTech.FileUltimate" version="9.4.0" />
1212
</packages>

Examples/AspNetMvcCS/Web.config

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@
1111
</appSettings>
1212
<system.web>
1313
<httpRuntime targetFramework="4.7.2" />
14-
<compilation debug="true" targetFramework="4.7.2"/>
14+
<compilation debug="true" targetFramework="4.7.2" />
1515
</system.web>
1616
<runtime>
1717
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
18+
<dependentAssembly>
19+
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
20+
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
21+
</dependentAssembly>
1822
<dependentAssembly>
1923
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
2024
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
@@ -25,11 +29,7 @@
2529
</dependentAssembly>
2630
<dependentAssembly>
2731
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
28-
<bindingRedirect oldVersion="0.0.0.0-5.2.9.0" newVersion="5.2.9.0" />
29-
</dependentAssembly>
30-
<dependentAssembly>
31-
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
32-
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
32+
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0" />
3333
</dependentAssembly>
3434
</assemblyBinding>
3535
</runtime>

Examples/AspNetMvcVB/AspNetMvcVB.vbproj

+12-12
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@
4848
</PropertyGroup>
4949
<ItemGroup>
5050
<Reference Include="GleamTech.Common">
51-
<HintPath>..\packages\GleamTech.Common.6.3.1\lib\net472\GleamTech.Common.dll</HintPath>
51+
<HintPath>..\packages\GleamTech.Common.6.4.0\lib\net472\GleamTech.Common.dll</HintPath>
5252
</Reference>
5353
<Reference Include="GleamTech.FileUltimate">
54-
<HintPath>..\packages\GleamTech.FileUltimate.9.3.4\lib\net472\GleamTech.FileUltimate.dll</HintPath>
54+
<HintPath>..\packages\GleamTech.FileUltimate.9.4.0\lib\net472\GleamTech.FileUltimate.dll</HintPath>
5555
</Reference>
5656
<Reference Include="GleamTech.DocumentUltimate">
57-
<HintPath>..\packages\GleamTech.DocumentUltimate.7.3.4\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
57+
<HintPath>..\packages\GleamTech.DocumentUltimate.7.4.0\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
5858
</Reference>
5959
<Reference Include="GleamTech.ImageUltimate">
60-
<HintPath>..\packages\GleamTech.ImageUltimate.6.3.1\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
60+
<HintPath>..\packages\GleamTech.ImageUltimate.6.4.0\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
6161
</Reference>
6262
<Reference Include="GleamTech.VideoUltimate">
63-
<HintPath>..\packages\GleamTech.VideoUltimate.4.3.1\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
63+
<HintPath>..\packages\GleamTech.VideoUltimate.4.4.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
6464
</Reference>
6565
</ItemGroup>
6666
<ItemGroup>
@@ -86,22 +86,22 @@
8686
<HintPath>..\packages\Microsoft.Web.Infrastructure.2.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
8787
</Reference>
8888
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
89-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.9\lib\net45\System.Web.Helpers.dll</HintPath>
89+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.Helpers.dll</HintPath>
9090
</Reference>
91-
<Reference Include="System.Web.Mvc, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
92-
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.9\lib\net45\System.Web.Mvc.dll</HintPath>
91+
<Reference Include="System.Web.Mvc, Version=5.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
92+
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.3.0\lib\net45\System.Web.Mvc.dll</HintPath>
9393
</Reference>
9494
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
95-
<HintPath>..\packages\Microsoft.AspNet.Razor.3.2.9\lib\net45\System.Web.Razor.dll</HintPath>
95+
<HintPath>..\packages\Microsoft.AspNet.Razor.3.3.0\lib\net45\System.Web.Razor.dll</HintPath>
9696
</Reference>
9797
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
98-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.9\lib\net45\System.Web.WebPages.dll</HintPath>
98+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.dll</HintPath>
9999
</Reference>
100100
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
101-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.9\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
101+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
102102
</Reference>
103103
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
104-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.9\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
104+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.3.0\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
105105
</Reference>
106106
</ItemGroup>
107107
<ItemGroup>

Examples/AspNetMvcVB/Packages.config

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.AspNet.Mvc" version="5.2.9" targetFramework="net472" />
4-
<package id="Microsoft.AspNet.Razor" version="3.2.9" targetFramework="net472" />
5-
<package id="Microsoft.AspNet.WebPages" version="3.2.9" targetFramework="net472" />
3+
<package id="Microsoft.AspNet.Mvc" version="5.3.0" targetFramework="net472" />
4+
<package id="Microsoft.AspNet.Razor" version="3.3.0" targetFramework="net472" />
5+
<package id="Microsoft.AspNet.WebPages" version="3.3.0" targetFramework="net472" />
66
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net472" />
7-
<package id="GleamTech.Common" version="6.3.1" />
8-
<package id="GleamTech.VideoUltimate" version="4.3.1" />
9-
<package id="GleamTech.ImageUltimate" version="6.3.1" />
10-
<package id="GleamTech.DocumentUltimate" version="7.3.4" />
11-
<package id="GleamTech.FileUltimate" version="9.3.4" />
7+
<package id="GleamTech.Common" version="6.4.0" />
8+
<package id="GleamTech.VideoUltimate" version="4.4.0" />
9+
<package id="GleamTech.ImageUltimate" version="6.4.0" />
10+
<package id="GleamTech.DocumentUltimate" version="7.4.0" />
11+
<package id="GleamTech.FileUltimate" version="9.4.0" />
1212
</packages>

Examples/AspNetMvcVB/Web.config

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
</system.web>
1616
<runtime>
1717
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
18+
<dependentAssembly>
19+
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
20+
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
21+
</dependentAssembly>
1822
<dependentAssembly>
1923
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
2024
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
@@ -25,11 +29,7 @@
2529
</dependentAssembly>
2630
<dependentAssembly>
2731
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
28-
<bindingRedirect oldVersion="0.0.0.0-5.2.9.0" newVersion="5.2.9.0" />
29-
</dependentAssembly>
30-
<dependentAssembly>
31-
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
32-
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
32+
<bindingRedirect oldVersion="0.0.0.0-5.3.0.0" newVersion="5.3.0.0" />
3333
</dependentAssembly>
3434
</assemblyBinding>
3535
</runtime>

Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@
5050
</PropertyGroup>
5151
<ItemGroup>
5252
<Reference Include="GleamTech.FileUltimate">
53-
<HintPath>..\packages\GleamTech.FileUltimate.9.3.4\lib\net472\GleamTech.FileUltimate.dll</HintPath>
53+
<HintPath>..\packages\GleamTech.FileUltimate.9.4.0\lib\net472\GleamTech.FileUltimate.dll</HintPath>
5454
</Reference>
5555
<Reference Include="GleamTech.DocumentUltimate">
56-
<HintPath>..\packages\GleamTech.DocumentUltimate.7.3.4\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
56+
<HintPath>..\packages\GleamTech.DocumentUltimate.7.4.0\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
5757
</Reference>
5858
<Reference Include="GleamTech.ImageUltimate">
59-
<HintPath>..\packages\GleamTech.ImageUltimate.6.3.1\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
59+
<HintPath>..\packages\GleamTech.ImageUltimate.6.4.0\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
6060
</Reference>
6161
<Reference Include="GleamTech.VideoUltimate">
62-
<HintPath>..\packages\GleamTech.VideoUltimate.4.3.1\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
62+
<HintPath>..\packages\GleamTech.VideoUltimate.4.4.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
6363
</Reference>
6464
<Reference Include="GleamTech.Common">
65-
<HintPath>..\packages\GleamTech.Common.6.3.1\lib\net472\GleamTech.Common.dll</HintPath>
65+
<HintPath>..\packages\GleamTech.Common.6.4.0\lib\net472\GleamTech.Common.dll</HintPath>
6666
</Reference>
6767
<Reference Include="System" />
6868
<Reference Include="System.Data" />
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<packages>
3-
<package id="GleamTech.Common" version="6.3.1" />
4-
<package id="GleamTech.VideoUltimate" version="4.3.1" />
5-
<package id="GleamTech.ImageUltimate" version="6.3.1" />
6-
<package id="GleamTech.DocumentUltimate" version="7.3.4" />
7-
<package id="GleamTech.FileUltimate" version="9.3.4" />
3+
<package id="GleamTech.Common" version="6.4.0" />
4+
<package id="GleamTech.VideoUltimate" version="4.4.0" />
5+
<package id="GleamTech.ImageUltimate" version="6.4.0" />
6+
<package id="GleamTech.DocumentUltimate" version="7.4.0" />
7+
<package id="GleamTech.FileUltimate" version="9.4.0" />
88
</packages>

Examples/AspNetWebFormsVB/AspNetWebFormsVB.vbproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -66,20 +66,20 @@
6666
</PropertyGroup>
6767
<ItemGroup>
6868
<Reference Include="GleamTech.FileUltimate">
69-
<HintPath>..\packages\GleamTech.FileUltimate.9.3.4\lib\net472\GleamTech.FileUltimate.dll</HintPath>
69+
<HintPath>..\packages\GleamTech.FileUltimate.9.4.0\lib\net472\GleamTech.FileUltimate.dll</HintPath>
7070
</Reference>
7171
<Reference Include="GleamTech.DocumentUltimate">
72-
<HintPath>..\packages\GleamTech.DocumentUltimate.7.3.4\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
72+
<HintPath>..\packages\GleamTech.DocumentUltimate.7.4.0\lib\net472\GleamTech.DocumentUltimate.dll</HintPath>
7373
</Reference>
7474
<Reference Include="GleamTech.ImageUltimate">
75-
<HintPath>..\packages\GleamTech.ImageUltimate.6.3.1\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
75+
<HintPath>..\packages\GleamTech.ImageUltimate.6.4.0\lib\net472\GleamTech.ImageUltimate.dll</HintPath>
7676
</Reference>
7777
<Reference Include="GleamTech.VideoUltimate">
78-
<HintPath>..\packages\GleamTech.VideoUltimate.4.3.1\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
78+
<HintPath>..\packages\GleamTech.VideoUltimate.4.4.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
7979
</Reference>
8080
<Reference Include="GleamTech.Common">
8181
<SpecificVersion>False</SpecificVersion>
82-
<HintPath>..\packages\GleamTech.Common.6.3.1\lib\net472\GleamTech.Common.dll</HintPath>
82+
<HintPath>..\packages\GleamTech.Common.6.4.0\lib\net472\GleamTech.Common.dll</HintPath>
8383
</Reference>
8484
<Reference Include="System" />
8585
<Reference Include="System.Data" />
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<packages>
3-
<package id="GleamTech.Common" version="6.3.1" />
4-
<package id="GleamTech.VideoUltimate" version="4.3.1" />
5-
<package id="GleamTech.ImageUltimate" version="6.3.1" />
6-
<package id="GleamTech.DocumentUltimate" version="7.3.4" />
7-
<package id="GleamTech.FileUltimate" version="9.3.4" />
3+
<package id="GleamTech.Common" version="6.4.0" />
4+
<package id="GleamTech.VideoUltimate" version="4.4.0" />
5+
<package id="GleamTech.ImageUltimate" version="6.4.0" />
6+
<package id="GleamTech.DocumentUltimate" version="7.4.0" />
7+
<package id="GleamTech.FileUltimate" version="9.4.0" />
88
</packages>

0 commit comments

Comments
 (0)