Skip to content

Commit 0ef9fbc

Browse files
committedDec 4, 2024
Updated GroupDocs.Total to 24.11
1 parent a0d4e70 commit 0ef9fbc

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed
 

‎Demos/MVC/src/GroupDocs.Total.MVC.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
<Reference Include="Castle.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
5050
<HintPath>..\packages\Castle.Core.4.3.1\lib\net45\Castle.Core.dll</HintPath>
5151
</Reference>
52-
<Reference Include="GroupDocs.Total, Version=24.9.1.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
53-
<HintPath>..\packages\GroupDocs.Total.NETFramework.24.9.1\lib\net462\GroupDocs.Total.dll</HintPath>
52+
<Reference Include="GroupDocs.Total, Version=24.11.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
53+
<HintPath>..\packages\GroupDocs.Total.NETFramework.24.11.0\lib\net462\GroupDocs.Total.dll</HintPath>
5454
</Reference>
5555
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
5656
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.8.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>

‎Demos/MVC/src/Products/Conversion/Manager/ConversionManager.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ public static void Convert(ConversionPostedData postedData, Common.Config.Global
3636
outputFileTemplate = Path.Combine(filesDirectory, fileNameWoExt + "." + destinationType);
3737
}
3838

39-
Func<int, Stream> getPageStream = page => new FileStream(string.Format(outputFileTemplate, page), FileMode.Create);
39+
Func<SavePageContext, Stream> getPageStream = ctx =>
40+
new FileStream(string.Format(outputFileTemplate, ctx.Page), FileMode.Create);
41+
4042
converter.Convert(getPageStream, convertOptions);
4143
}
4244
else

‎Demos/MVC/src/packages.config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<packages>
33
<package id="Antlr" version="3.4.1.9004" targetFramework="net45" />
44
<package id="Castle.Core" version="4.3.1" targetFramework="net45" />
5-
<package id="GroupDocs.Total.NETFramework" version="24.9.1" targetFramework="net48" />
5+
<package id="GroupDocs.Total.NETFramework" version="24.11.0" targetFramework="net48" />
66
<package id="Microsoft.AspNet.Cors" version="5.2.7" targetFramework="net45" />
77
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net45" />
88
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net45" />
@@ -26,7 +26,6 @@
2626
<package id="System.Collections.Immutable" version="7.0.0" targetFramework="net48" />
2727
<package id="System.Diagnostics.DiagnosticSource" version="7.0.0" targetFramework="net48" />
2828
<package id="System.Drawing.Common" version="6.0.0" targetFramework="net48" />
29-
<package id="System.IO.Compression" version="4.3.0" targetFramework="net45" requireReinstallation="true" />
3029
<package id="System.Memory" version="4.5.5" targetFramework="net48" />
3130
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net48" />
3231
<package id="System.Reflection.Metadata" version="7.0.0" targetFramework="net48" />

‎Demos/WebForms/src/GroupDocs.Total.WebForms.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
<WarningLevel>4</WarningLevel>
4747
</PropertyGroup>
4848
<ItemGroup>
49-
<Reference Include="GroupDocs.Total, Version=24.9.1.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
50-
<HintPath>..\packages\GroupDocs.Total.NETFramework.24.9.1\lib\net462\GroupDocs.Total.dll</HintPath>
49+
<Reference Include="GroupDocs.Total, Version=24.11.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
50+
<HintPath>..\packages\GroupDocs.Total.NETFramework.24.11.0\lib\net462\GroupDocs.Total.dll</HintPath>
5151
</Reference>
5252
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
5353
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.8.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>

‎Demos/WebForms/src/Products/Conversion/Manager/ConversionManager.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public static void Convert(ConversionPostedData postedData, Common.Config.Global
3636
outputFileTemplate = Path.Combine(filesDirectory, fileNameWoExt + "." + destinationType);
3737
}
3838

39-
Func<int, Stream> getPageStream = page => new FileStream(string.Format(outputFileTemplate, page), FileMode.Create);
39+
Func<SavePageContext, Stream> getPageStream =
40+
ctx => new FileStream(string.Format(outputFileTemplate, ctx.Page), FileMode.Create);
4041
converter.Convert(getPageStream, convertOptions);
4142
}
4243
else

‎Demos/WebForms/src/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Antlr" version="3.4.1.9004" targetFramework="net45" />
4-
<package id="GroupDocs.Total.NETFramework" version="24.9.1" targetFramework="net48" />
4+
<package id="GroupDocs.Total.NETFramework" version="24.11.0" targetFramework="net48" />
55
<package id="Microsoft.AspNet.Cors" version="5.2.6" targetFramework="net45" />
66
<package id="Microsoft.AspNet.FriendlyUrls" version="1.0.2" targetFramework="net45" />
77
<package id="Microsoft.AspNet.FriendlyUrls.Core" version="1.0.2" targetFramework="net45" />

0 commit comments

Comments
 (0)