Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 2ceddb4

Browse files
committed
React to identity changes
1 parent f46d8d2 commit 2ceddb4

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

samples/Antiforgery.MvcWithAuthAndAjax/Models/ApplicationUser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
4+
using Microsoft.AspNetCore.Identity;
55

66
namespace Antiforgery.MvcWithAuthAndAjax.Models
77
{

samples/Antiforgery.MvcWithAuthAndAjax/Startup.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.IO;
55
using Microsoft.AspNetCore.Builder;
66
using Microsoft.AspNetCore.Hosting;
7+
using Microsoft.AspNetCore.Identity;
78
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
89
using Microsoft.EntityFrameworkCore;
910
using Microsoft.Extensions.DependencyInjection;

samples/Localization.StarterWeb/Models/ApplicationDbContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using Microsoft.AspNetCore.Identity;
12
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
23
using Microsoft.EntityFrameworkCore;
34

samples/Localization.StarterWeb/Models/ApplicationUser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Threading.Tasks;
5-
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
5+
using Microsoft.AspNetCore.Identity;
66

77
namespace Localization.StarterWeb.Models
88
{

samples/Localization.StarterWeb/Startup.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using Localization.StarterWeb.Services;
55
using Microsoft.AspNetCore.Builder;
66
using Microsoft.AspNetCore.Hosting;
7+
using Microsoft.AspNetCore.Identity;
78
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
89
using Microsoft.AspNetCore.Localization;
910
using Microsoft.AspNetCore.Mvc.Razor;

0 commit comments

Comments
 (0)