Skip to content

Commit 600f468

Browse files
Update using references
1 parent e4d9afa commit 600f468

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

src/MakingSense.AspNet.Authentication.SimpleToken/SimpleTokenAppBuilderExtensions.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
using System;
2+
using System.IdentityModel.Tokens;
23
using MakingSense.AspNet.Authentication.SimpleToken;
3-
using Microsoft.Framework.DependencyInjection;
4+
using Microsoft.Extensions.DependencyInjection;
45
using Microsoft.Framework.Internal;
5-
using Microsoft.Framework.OptionsModel;
6-
using System.IdentityModel.Tokens;
76

87
namespace Microsoft.AspNet.Builder
98
{

src/MakingSense.AspNet.Authentication.SimpleToken/SimpleTokenAuthenticationHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System;
2-
using Microsoft.AspNet.Http.Authentication;
32
using System.IdentityModel.Tokens;
4-
using Microsoft.AspNet.Http;
53
using System.Text;
64
using System.Threading.Tasks;
75
using MakingSense.AspNet.Authentication.Abstractions;
86
using Microsoft.AspNet.Authentication;
7+
using Microsoft.AspNet.Http;
8+
using Microsoft.AspNet.Http.Authentication;
99
using Microsoft.Net.Http.Headers;
1010

1111
namespace MakingSense.AspNet.Authentication.SimpleToken

src/MakingSense.AspNet.Authentication.SimpleToken/SimpleTokenAuthenticationMiddleware.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
using System;
2+
using Microsoft.AspNet.Authentication;
23
using Microsoft.AspNet.Builder;
4+
using Microsoft.Extensions.Logging;
5+
using Microsoft.Extensions.WebEncoders;
36
using Microsoft.Framework.Internal;
4-
using Microsoft.Framework.Logging;
5-
using Microsoft.Framework.OptionsModel;
6-
using Microsoft.Framework.WebEncoders;
7-
using Microsoft.AspNet.Authentication;
87

98
namespace MakingSense.AspNet.Authentication.SimpleToken
109
{

src/MakingSense.AspNet.Authentication.SimpleToken/SimpleTokenAuthenticationOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using Microsoft.AspNet.Authentication;
2-
using Microsoft.Framework.Internal;
31
using System;
42
using System.Collections.Generic;
53
using System.IdentityModel.Tokens;
4+
using Microsoft.AspNet.Authentication;
5+
using Microsoft.Framework.Internal;
66

77
namespace MakingSense.AspNet.Authentication.SimpleToken
88
{

0 commit comments

Comments
 (0)