diff --git a/ArcFormats/ArcFormats.csproj b/ArcFormats/ArcFormats.csproj index e4c9efd2..29c295e5 100644 --- a/ArcFormats/ArcFormats.csproj +++ b/ArcFormats/ArcFormats.csproj @@ -126,8 +126,8 @@ - - ..\packages\ZstdNet.1.5.7\lib\netstandard2.0\ZstdNet.dll + + ..\packages\ZstdSharp.Port.0.8.7\lib\net462\ZstdSharp.dll @@ -1391,12 +1391,10 @@ exit 0 if not exist "$(TargetDir)\GameData" mkdir "$(TargetDir)\GameData" xcopy "$(ProjectDir)\Resources\*" "$(TargetDir)\GameData\" /D /Y >NUL - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - diff --git a/ArcFormats/Nexas/ArcPAC.cs b/ArcFormats/Nexas/ArcPAC.cs index 2aa5fded..3857ab17 100644 --- a/ArcFormats/Nexas/ArcPAC.cs +++ b/ArcFormats/Nexas/ArcPAC.cs @@ -313,7 +313,7 @@ namespace GameRes.Formats.NeXAS static private byte[] ZstdDecompress (Stream s, uint unpackedSize) { - using (var ds = new ZstdNet.DecompressionStream (s)) + using (var ds = new ZstdSharp.DecompressionStream (s)) { var dst = new byte[unpackedSize]; ds.Read (dst, 0, dst.Length); diff --git a/ArcFormats/NitroPlus/ArcNPK.cs b/ArcFormats/NitroPlus/ArcNPK.cs index 19e038d8..98ab1728 100644 --- a/ArcFormats/NitroPlus/ArcNPK.cs +++ b/ArcFormats/NitroPlus/ArcNPK.cs @@ -527,7 +527,7 @@ namespace GameRes.Formats.NitroPlus m_stream = new DeflateStream (m_stream, CompressionMode.Decompress); break; case 3: - m_stream = new ZstdNet.DecompressionStream (m_stream); + m_stream = new ZstdSharp.DecompressionStream (m_stream); break; } } diff --git a/ArcFormats/packages.config b/ArcFormats/packages.config index ee8141ba..8c9610f1 100644 --- a/ArcFormats/packages.config +++ b/ArcFormats/packages.config @@ -20,5 +20,5 @@ - + \ No newline at end of file