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