Skip to content

Commit

Permalink
Cookies: Suppress CodeAnalysis issue for build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tratcher committed Jul 2, 2014
1 parent 0295fb9 commit 7c98521
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

using System;
using System.Diagnostics.CodeAnalysis;
using Microsoft.Owin.Security.Provider;

namespace Microsoft.Owin.Security.Cookies
Expand Down Expand Up @@ -35,6 +36,8 @@ public class CookieExceptionContext : BaseContext<CookieAuthenticationOptions>
/// <summary>
/// The code paths where exceptions may be reported.
/// </summary>
[SuppressMessage("Microsoft.Design", "CA1034:NestedTypesShouldNotBeVisible", Scope = "type",
Target = "Microsoft.Owin.Security.Cookies.CookieExceptionContext+ExceptionLocation", Justification = "It is a directly related option.")]
public enum ExceptionLocation
{
/// <summary>
Expand Down

0 comments on commit 7c98521

Please sign in to comment.