diff options
Diffstat (limited to 'src/DotNetOpenAuth/Stubs/CompactFramework/PureAttribute.cs')
-rw-r--r-- | src/DotNetOpenAuth/Stubs/CompactFramework/PureAttribute.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth/Stubs/CompactFramework/PureAttribute.cs b/src/DotNetOpenAuth/Stubs/CompactFramework/PureAttribute.cs new file mode 100644 index 0000000..2ba9e2c --- /dev/null +++ b/src/DotNetOpenAuth/Stubs/CompactFramework/PureAttribute.cs @@ -0,0 +1,20 @@ +//----------------------------------------------------------------------- +// <copyright file="PureAttribute.cs" company="Andrew Arnott"> +// Copyright (c) Andrew Arnott. All rights reserved. +// </copyright> +//----------------------------------------------------------------------- + +namespace System.Diagnostics.Contracts { + using System; + using System.Linq; + using System.Collections.Generic; + using System.Text; + using System.Diagnostics; + + [global::System.AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = false)] + [Conditional("StubbedAttributes")] // we never want these to actually compile in + internal sealed class PureAttribute : Attribute { + public PureAttribute() { + } + } +} |