diff --git a/BinaryObjectScanner/BinaryObjectScanner.csproj b/BinaryObjectScanner/BinaryObjectScanner.csproj index cd54ca04..c08d5dda 100644 --- a/BinaryObjectScanner/BinaryObjectScanner.csproj +++ b/BinaryObjectScanner/BinaryObjectScanner.csproj @@ -78,6 +78,7 @@ + diff --git a/BinaryObjectScanner/ExtensionAttribute.cs b/BinaryObjectScanner/ExtensionAttribute.cs new file mode 100644 index 00000000..f7d035b2 --- /dev/null +++ b/BinaryObjectScanner/ExtensionAttribute.cs @@ -0,0 +1,9 @@ +#if NET20 + +namespace System.Runtime.CompilerServices +{ + [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)] + internal sealed class ExtensionAttribute : Attribute {} +} + +#endif \ No newline at end of file