From b02c3121fe1916c2bd70977706ba0023446ead1d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 15 Nov 2023 00:24:47 -0500 Subject: [PATCH] Use official package for IProgress --- .../BinaryObjectScanner.csproj | 4 ++++ BinaryObjectScanner/Interfaces/IProgress.cs | 19 ------------------- Test/Test.csproj | 4 ++++ 3 files changed, 8 insertions(+), 19 deletions(-) delete mode 100644 BinaryObjectScanner/Interfaces/IProgress.cs diff --git a/BinaryObjectScanner/BinaryObjectScanner.csproj b/BinaryObjectScanner/BinaryObjectScanner.csproj index 1e86527a..6be4001f 100644 --- a/BinaryObjectScanner/BinaryObjectScanner.csproj +++ b/BinaryObjectScanner/BinaryObjectScanner.csproj @@ -65,6 +65,10 @@ + + + + diff --git a/BinaryObjectScanner/Interfaces/IProgress.cs b/BinaryObjectScanner/Interfaces/IProgress.cs deleted file mode 100644 index e4fe415d..00000000 --- a/BinaryObjectScanner/Interfaces/IProgress.cs +++ /dev/null @@ -1,19 +0,0 @@ -#if 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 \ No newline at end of file diff --git a/Test/Test.csproj b/Test/Test.csproj index 62be9f9a..469bd4fe 100644 --- a/Test/Test.csproj +++ b/Test/Test.csproj @@ -22,6 +22,10 @@ + + + + Always