From 9cc2f99334390d206bb7c727b3490944c5708841 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 20 Nov 2024 16:51:06 -0500 Subject: [PATCH] Quick package sync --- BinaryObjectScanner/BinaryObjectScanner.csproj | 1 + BinaryObjectScanner/ExtensionAttribute.cs | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 BinaryObjectScanner/ExtensionAttribute.cs 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