Move IApplicationDiscriminator to Infrastructure namespace
This commit is contained in:
parent
22927ec289
commit
271ec1bd4b
|
|
@ -6,6 +6,7 @@ using System.Collections.Generic;
|
|||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
using System.Security.Cryptography;
|
||||
using Microsoft.AspNet.DataProtection.Infrastructure;
|
||||
using Microsoft.AspNet.DataProtection.Interfaces;
|
||||
using Microsoft.Framework.Internal;
|
||||
|
||||
|
|
|
|||
|
|
@ -2,12 +2,18 @@
|
|||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Microsoft.AspNet.DataProtection
|
||||
namespace Microsoft.AspNet.DataProtection.Infrastructure
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides information used to discriminate applications.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This type supports the data protection system and is not intended to be used
|
||||
/// by consumers.
|
||||
/// </remarks>
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public interface IApplicationDiscriminator
|
||||
{
|
||||
/// <summary>
|
||||
|
|
@ -5,6 +5,7 @@ using System;
|
|||
using System.Configuration;
|
||||
using System.Web;
|
||||
using System.Web.Configuration;
|
||||
using Microsoft.AspNet.DataProtection.Infrastructure;
|
||||
using Microsoft.Framework.DependencyInjection;
|
||||
|
||||
namespace Microsoft.AspNet.DataProtection.SystemWeb
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
using Microsoft.AspNet.DataProtection.Infrastructure;
|
||||
using Microsoft.AspNet.DataProtection.Interfaces;
|
||||
using Microsoft.AspNet.Testing;
|
||||
using Microsoft.Framework.Runtime;
|
||||
|
|
|
|||
Loading…
Reference in New Issue