Use PureSharpCompress instead of SharpCompress
Some checks are pending
MSBuild / build (push) Waiting to run
MSBuild / publish (push) Blocked by required conditions

This commit is contained in:
ema
2025-05-23 03:18:51 +08:00
parent 00ef7d1e01
commit 9803f5d6a8
3 changed files with 6 additions and 7 deletions

View File

@@ -18,9 +18,9 @@
using QuickLook.Common.Annotations;
using QuickLook.Common.ExtensionMethods;
using QuickLook.Common.Helpers;
using SharpCompress.Archives;
using SharpCompress.Common;
using SharpCompress.Readers;
using PureSharpCompress.Archives;
using PureSharpCompress.Common;
using PureSharpCompress.Readers;
using System;
using System.Collections.Generic;
using System.ComponentModel;

View File

@@ -15,8 +15,8 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using SharpCompress.Common;
using SharpCompress.Readers;
using PureSharpCompress.Common;
using PureSharpCompress.Readers;
using System;
using System.Text;
using UtfUnknown;

View File

@@ -52,8 +52,7 @@
</PropertyGroup>
<ItemGroup>
<!--Rollback SharpCompress to 0.38.0 before clear dependencies-->
<PackageReference Include="SharpCompress" Version="0.38.0" />
<PackageReference Include="PureSharpCompress" Version="0.39.0" />
<PackageReference Include="UTF.Unknown" Version="2.5.1" />
</ItemGroup>