From c0a590db63c69bdfa80da1ca3c4522bae598f12c Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 24 Sep 2025 13:06:27 -0400 Subject: [PATCH] Use package-provided IProgress to avoid conflict --- BinaryObjectScanner/BinaryObjectScanner.csproj | 1 + BinaryObjectScanner/IProgress.cs | 18 ------------------ 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 BinaryObjectScanner/IProgress.cs diff --git a/BinaryObjectScanner/BinaryObjectScanner.csproj b/BinaryObjectScanner/BinaryObjectScanner.csproj index 02f0292f..1e22f228 100644 --- a/BinaryObjectScanner/BinaryObjectScanner.csproj +++ b/BinaryObjectScanner/BinaryObjectScanner.csproj @@ -53,6 +53,7 @@ + diff --git a/BinaryObjectScanner/IProgress.cs b/BinaryObjectScanner/IProgress.cs deleted file mode 100644 index 4d4175cf..00000000 --- a/BinaryObjectScanner/IProgress.cs +++ /dev/null @@ -1,18 +0,0 @@ -#if NET20 || NET35 || NET40 - -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. - -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); - } -} - -#endif