Skip to content

Commit 7065436

Browse files
committed
Update nuget packages
1 parent debe091 commit 7065436

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

BurnOutSharp/BurnOutSharp.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<Copyright>Copyright (c)2005-2010 Gernot Knippen, Copyright (c)2018-2021 Matt Nadareski</Copyright>
1212
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
1313
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
14-
<Version>1.6.1</Version>
15-
<AssemblyVersion>1.6.1</AssemblyVersion>
16-
<FileVersion>1.6.1</FileVersion>
14+
<Version>1.7.0</Version>
15+
<AssemblyVersion>1.7.0</AssemblyVersion>
16+
<FileVersion>1.7.0</FileVersion>
1717
<IncludeSource>true</IncludeSource>
1818
<IncludeSymbols>true</IncludeSymbols>
1919
</PropertyGroup>
@@ -23,8 +23,8 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="SharpCompress" Version="0.28.1" />
27-
<PackageReference Include="UnshieldSharp" Version="1.5.0" />
26+
<PackageReference Include="SharpCompress" Version="0.28.3" />
27+
<PackageReference Include="UnshieldSharp" Version="1.6.0" />
2828
<PackageReference Include="WiseUnpacker" Version="1.0.2" />
2929
</ItemGroup>
3030

BurnOutSharp/FileType/InstallShieldCAB.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Collections.Generic;
44
using System.IO;
55
using System.Text.RegularExpressions;
6-
using UnshieldSharp;
6+
using UnshieldSharp.Cabinet;
77

88
namespace BurnOutSharp.FileType
99
{
@@ -54,7 +54,7 @@ public ConcurrentDictionary<string, ConcurrentQueue<string>> Scan(Scanner scanne
5454
string tempPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
5555
Directory.CreateDirectory(tempPath);
5656

57-
UnshieldCabinet cabfile = UnshieldCabinet.Open(file);
57+
InstallShieldCabinet cabfile = InstallShieldCabinet.Open(file);
5858
for (int i = 0; i < cabfile.FileCount; i++)
5959
{
6060
// If an individual entry fails

0 commit comments

Comments
 (0)