diff --git a/BinaryObjectScanner/Progress.cs b/ProtectionScan/Progress.cs similarity index 97% rename from BinaryObjectScanner/Progress.cs rename to ProtectionScan/Progress.cs index 7583dec4..aee9c631 100644 --- a/BinaryObjectScanner/Progress.cs +++ b/ProtectionScan/Progress.cs @@ -6,8 +6,9 @@ using System; using System.Threading; using System.Diagnostics; +using BinaryObjectScanner; -namespace BinaryObjectScanner +namespace ProtectionScan { /// /// Provides an IProgress{T} that invokes callbacks for each reported progress value. @@ -21,7 +22,7 @@ namespace BinaryObjectScanner /// at the time of construction, the callbacks will be invoked on the ThreadPool. /// /// - public class Progress : IProgress where T : EventArgs + internal class Progress : IProgress where T : EventArgs { /// The synchronization context captured upon construction. This will never be null. private readonly SynchronizationContext? _synchronizationContext;