File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
test/ICSharpCode.SharpZipLib.Tests Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Library</OutputType >
5- < TargetFramework >netcoreapp2.0</ TargetFramework >
5+ < TargetFrameworks >netcoreapp2.0;net46</ TargetFrameworks >
66 <ApplicationIcon />
77 <StartupObject />
88 </PropertyGroup >
1818 <PackageReference Include =" PublishCoverity" Version =" 0.11.0" />
1919 <PackageReference Include =" ReportGenerator" Version =" 2.5.10" />
2020 <PackageReference Include =" System.Text.Encoding.CodePages" Version =" 4.4.0" />
21+ <PackageReference Include =" System.ValueTuple" Version =" 4.5.0" />
2122 </ItemGroup >
2223
2324 <ItemGroup >
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ private void TestFileNames(IEnumerable<string> names)
223223
224224 Assert . AreEqual ( name , entry . Name ) ;
225225
226- var nameBytes = string . Join ( ' ' , Encoding . BigEndianUnicode . GetBytes ( entry . Name ) . Select ( b => b . ToString ( "x2" ) ) ) ;
226+ var nameBytes = string . Join ( " " , Encoding . BigEndianUnicode . GetBytes ( entry . Name ) . Select ( b => b . ToString ( "x2" ) ) ) ;
227227
228228 Console . WriteLine ( $ " - Zip entry: { entry . Name } ({ nameBytes } )") ;
229229 }
You can’t perform that action at this time.
0 commit comments