diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-09-09 07:12:30 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-09-09 07:12:30 -0700 |
commit | d43ea0db7136fd32a4b2f3f2ffbaf2ebc02750ba (patch) | |
tree | 10c99784df882a45e858f6832ed040897baa4294 /src | |
parent | 637fb7dd7c44f4a36e45bc18122cf035038c775f (diff) | |
download | DotNetOpenAuth-d43ea0db7136fd32a4b2f3f2ffbaf2ebc02750ba.zip DotNetOpenAuth-d43ea0db7136fd32a4b2f3f2ffbaf2ebc02750ba.tar.gz DotNetOpenAuth-d43ea0db7136fd32a4b2f3f2ffbaf2ebc02750ba.tar.bz2 |
FxCop message fixes.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/GlobalSuppressions.cs | 3 | ||||
-rw-r--r-- | src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth/GlobalSuppressions.cs b/src/DotNetOpenAuth/GlobalSuppressions.cs index aec0ee5..d0e0d05 100644 --- a/src/DotNetOpenAuth/GlobalSuppressions.cs +++ b/src/DotNetOpenAuth/GlobalSuppressions.cs @@ -45,3 +45,6 @@ [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1020:AvoidNamespacesWithFewTypes", Scope = "namespace", Target = "DotNetOpenAuth.Messaging.Reflection")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly", MessageId = "oauthverifier", Scope = "resource", Target = "DotNetOpenAuth.OAuth.OAuthStrings.resources")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly", MessageId = "whitelist", Scope = "resource", Target = "DotNetOpenAuth.OpenId.OpenIdStrings.resources")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly", MessageId = "icam", Scope = "resource", Target = "DotNetOpenAuth.OpenId.Behaviors.BehaviorStrings.resources")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly", MessageId = "idmanagement", Scope = "resource", Target = "DotNetOpenAuth.OpenId.Behaviors.BehaviorStrings.resources")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly", MessageId = "no-pii", Scope = "resource", Target = "DotNetOpenAuth.OpenId.Behaviors.BehaviorStrings.resources")] diff --git a/src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs b/src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs index b014a6a..8f3b78f 100644 --- a/src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs +++ b/src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs @@ -6,6 +6,7 @@ namespace DotNetOpenAuth.OpenId.Behaviors { using System; + using System.Diagnostics.CodeAnalysis; using System.Diagnostics.Contracts; using System.Linq; using DotNetOpenAuth.Messaging; @@ -25,6 +26,7 @@ namespace DotNetOpenAuth.OpenId.Behaviors { /// indicates that they want to use this profile. </para> /// </remarks> [Serializable] + [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Icam", Justification = "Acronym")] public sealed class GsaIcamProfile : IRelyingPartyBehavior, IProviderBehavior { /// <summary> /// The maximum time a shared association can live. @@ -43,6 +45,7 @@ namespace DotNetOpenAuth.OpenId.Behaviors { /// <summary> /// Gets or sets the provider for generating PPID identifiers. /// </summary> + [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Ppid", Justification = "Acronym")] public static IDirectedIdentityIdentifierProvider PpidIdentifierProvider { get; set; } /// <summary> |