Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'System.Runtime.CompilerServices/ExtensionAttribute.cs')
-rw-r--r--System.Runtime.CompilerServices/ExtensionAttribute.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/System.Runtime.CompilerServices/ExtensionAttribute.cs b/System.Runtime.CompilerServices/ExtensionAttribute.cs
deleted file mode 100644
index 5b85f12..0000000
--- a/System.Runtime.CompilerServices/ExtensionAttribute.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// Author:
-// Jb Evain (jbevain@gmail.com)
-//
-// Copyright (c) 2008 - 2015 Jb Evain
-// Copyright (c) 2008 - 2011 Novell, Inc.
-//
-// Licensed under the MIT/X11 license.
-//
-
-using System;
-
-#if !NET_3_5 && !NET_4_0
-
-namespace System.Runtime.CompilerServices {
-
- [AttributeUsage (AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)]
- sealed class ExtensionAttribute : Attribute {
- }
-}
-
-#endif