From c945ca4fe32ca796cb867304365a7f1b4f7d5a41 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 15 Nov 2024 23:59:23 -0500 Subject: [PATCH] Make BOS compatible with RedumpLib --- BinaryObjectScanner/BinaryObjectScanner.csproj | 3 +++ BinaryObjectScanner/Progress.cs | 10 ---------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/BinaryObjectScanner/BinaryObjectScanner.csproj b/BinaryObjectScanner/BinaryObjectScanner.csproj index 1c6806d7..70d01f05 100644 --- a/BinaryObjectScanner/BinaryObjectScanner.csproj +++ b/BinaryObjectScanner/BinaryObjectScanner.csproj @@ -82,6 +82,9 @@ + + + diff --git a/BinaryObjectScanner/Progress.cs b/BinaryObjectScanner/Progress.cs index 3ed82c1a..dd1e8a1b 100644 --- a/BinaryObjectScanner/Progress.cs +++ b/BinaryObjectScanner/Progress.cs @@ -8,16 +8,6 @@ using System.Diagnostics; namespace System { - /// Defines a provider for progress updates. - /// The type of progress update value. - /// - public interface IProgress - { - /// Reports a progress update. - /// The value of the updated progress. - void Report(T value); - } - /// /// Provides an IProgress{T} that invokes callbacks for each reported progress value. ///