File tree Expand file tree Collapse file tree 4 files changed +1
-28
lines changed
EPPlus.Export.ImageRenderer Expand file tree Collapse file tree 4 files changed +1
-28
lines changed Original file line number Diff line number Diff line change 5757 <Reference Include =" System.Security" />
5858 <Reference Include =" System.Xml" />
5959 <Reference Include =" System.Threading.Tasks" />
60- <PackageReference Include =" System.ComponentModel.Annotations" />
6160 <PackageReference Include =" Microsoft.IO.RecyclableMemoryStream" />
62- <PackageReference Include =" System.Security.Cryptography.Xml" />
6361 </ItemGroup >
6462
6563 <ItemGroup Condition =" '$(TargetFramework)' != 'net35' and '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'net9.0'" >
6664 <PackageReference Include =" Microsoft.Extensions.Configuration.Json" />
6765 <PackageReference Include =" Microsoft.IO.RecyclableMemoryStream" />
68- <PackageReference Include =" System.Security.Cryptography.Pkcs" />
6966 <PackageReference Include =" System.ComponentModel.Annotations" />
70- <PackageReference Include =" System.Text.Encoding.CodePages" />
71- <PackageReference Include =" System.Security.Cryptography.Xml" />
7267 </ItemGroup >
7368
7469 <ItemGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
75- <PackageReference Include =" Microsoft.Extensions.Configuration.Json" VersionOverride =" 9.0.3 " />
70+ <PackageReference Include =" Microsoft.Extensions.Configuration.Json" VersionOverride =" 9.0.15 " />
7671 <PackageReference Include =" Microsoft.IO.RecyclableMemoryStream" />
77- <PackageReference Include =" System.Security.Cryptography.Pkcs" VersionOverride =" 9.0.3" />
7872 <PackageReference Include =" System.ComponentModel.Annotations" />
79- <PackageReference Include =" System.Text.Encoding.CodePages" VersionOverride =" 9.0.3" />
80- <PackageReference Include =" System.Security.Cryptography.Xml" VersionOverride =" 9.0.3" />
8173 </ItemGroup >
8274
8375 <ItemGroup >
Original file line number Diff line number Diff line change @@ -730,7 +730,6 @@ public void CreateCache()
730730 var node = GetTopNode ( DataLabelSerie , extPath ) ;
731731 DataLabelRangeSource . CreateCache ( node ) ;
732732 }
733- }
734733 }
735734 internal void CreateCache ( string address , XmlNode node )
736735 {
Original file line number Diff line number Diff line change 11using Microsoft . VisualStudio . TestTools . UnitTesting ;
22using OfficeOpenXml ;
3- using OfficeOpenXml . Compatibility . System . Drawing ;
43using OfficeOpenXml . ConditionalFormatting ;
54using OfficeOpenXml . ConditionalFormatting . Contracts ;
65using OfficeOpenXml . Style ;
Original file line number Diff line number Diff line change @@ -1150,22 +1150,5 @@ public void Issue2325()
11501150 } ) ;
11511151 Assert . IsTrue ( ex . Message . Contains ( "Strict Open XML" ) ) ;
11521152 }
1153-
1154- [ TestMethod ]
1155- public void InsertAndShift_ShouldNotThrow_WhenArrayIsFull ( )
1156- {
1157- using var package = new ExcelPackage ( ) ;
1158- var sheet = package . Workbook . Worksheets . Add ( "Sheet1" ) ;
1159-
1160- // Fill 7 columns with formatting to trigger the boundary condition
1161- for ( int col = 1 ; col <= 7 ; col ++ )
1162- {
1163- sheet . Column ( col ) . Width = 15 ;
1164- }
1165-
1166- // These two inserts should not throw ArgumentException
1167- sheet . InsertColumn ( 3 , 1 ) ;
1168- sheet . InsertColumn ( 5 , 1 ) ;
1169- }
11701153 }
11711154}
You can’t perform that action at this time.
0 commit comments