React to renames

This commit is contained in:
David Fowler 2014-05-06 01:04:17 -07:00
parent 1235ea1a6f
commit d916a6d66a
5 changed files with 5 additions and 5 deletions

View File

@ -2,12 +2,12 @@ using System;
using System.Security.Claims; using System.Security.Claims;
using Microsoft.AspNet; using Microsoft.AspNet;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.DependencyInjection; using Microsoft.AspNet.DependencyInjection;
using Microsoft.AspNet.DependencyInjection.Fallback; using Microsoft.AspNet.DependencyInjection.Fallback;
using Microsoft.AspNet.Logging; using Microsoft.AspNet.Logging;
using Microsoft.AspNet.Security.Cookies; using Microsoft.AspNet.Security.Cookies;
using Microsoft.AspNet.RequestContainer; using Microsoft.AspNet.RequestContainer;
using Microsoft.AspNet.Builder;
namespace CookieSample namespace CookieSample
{ {

View File

@ -6,7 +6,7 @@ using Microsoft.AspNet.Logging;
using Microsoft.AspNet.Security.Cookies; using Microsoft.AspNet.Security.Cookies;
using Microsoft.AspNet.Security.DataProtection; using Microsoft.AspNet.Security.DataProtection;
namespace Microsoft.AspNet namespace Microsoft.AspNet.Builder
{ {
/// <summary> /// <summary>
/// Extension methods provided by the cookies authentication middleware /// Extension methods provided by the cookies authentication middleware

View File

@ -1,6 +1,7 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System; using System;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.Logging; using Microsoft.AspNet.Logging;
using Microsoft.AspNet.Security.DataHandler; using Microsoft.AspNet.Security.DataHandler;

View File

@ -2,6 +2,7 @@
using System; using System;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.Security.Infrastructure namespace Microsoft.AspNet.Security.Infrastructure

View File

@ -21,9 +21,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="DefaultAuthorizationServiceTests.cs" /> <Compile Include="DefaultAuthorizationServiceTests.cs" />
</ItemGroup> <Compile Include="FakePolicy.cs" />
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup> </ItemGroup>
<Import Project="$(VSToolsPath)\ProjectK\Microsoft.Web.ProjectK.targets" Condition="'$(VSToolsPath)' != ''" /> <Import Project="$(VSToolsPath)\ProjectK\Microsoft.Web.ProjectK.targets" Condition="'$(VSToolsPath)' != ''" />
</Project> </Project>