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. ///