Move IApplicationDiscriminator to Infrastructure namespace

This commit is contained in:
Levi B 2015-03-17 20:54:12 -07:00
parent 22927ec289
commit 271ec1bd4b
4 changed files with 10 additions and 1 deletions

View File

@ -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;

View File

@ -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>

View File

@ -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

View File

@ -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;