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

Commit 6ec85ca

Browse files
committed
Update to netcore GA
1 parent 93b06a0 commit 6ec85ca

File tree

7 files changed

+5587
-4605
lines changed

7 files changed

+5587
-4605
lines changed

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,16 @@ author: dstrockis
55
---
66

77
# Calling a web API in an ASP.NET Core web application using Azure AD
8-
This sample shows how to build an MVC web application that uses Azure AD for sign-in using the OpenID Connect protocol, and then calls a web API under the signed-in user's identity using tokens obtained via OAuth 2.0. This sample uses the OpenID Connect ASP.Net OWIN middleware and ADAL .Net running on ASP.NET 5.
8+
This sample shows how to build an MVC web application that uses Azure AD for sign-in using the OpenID Connect protocol, and then calls a web API under the signed-in user's identity using tokens obtained via OAuth 2.0. This sample uses the OpenID Connect ASP.Net middleware and ADAL .Net running on ASP.NET Core.
99

1010
For more information about how the protocols work in this scenario and other scenarios, see [Authentication Scenarios for Azure AD](http://go.microsoft.com/fwlink/?LinkId=394414).
1111

12-
> This sample has finally been updated to ASP.NET Core RC2. Looking for previous versions of this code sample? Check out the tags on the [releases](../../releases) GitHub page.
12+
> This sample has finally been updated to ASP.NET Core 1.0. Looking for previous versions of this code sample? Check out the tags on the [releases](../../releases) GitHub page.
1313
1414
## How To Run This Sample
1515

1616
Getting started is simple! To run this sample you will need:
17-
- [.NET Core & .NET Core SDK RC2 releases](https://www.microsoft.com/net/download)
18-
- [ASP.NET Core RC2 release](https://blogs.msdn.microsoft.com/webdev/2016/05/16/announcing-asp-net-core-rc2/)
19-
- [Visual Studio 2015 Update 2](https://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs.aspx)
17+
- Install .NET Core for Windows by following the instructions at [dot.net/core](https://dot.net/core), which will include Visual Studio 2015 Update 3.
2018
- An Internet connection
2119
- An Azure subscription (a free trial is sufficient)
2220

TodoListService/project.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
},
1010

1111
"dependencies": {
12-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
13-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
14-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
15-
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-final",
16-
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
17-
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
18-
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
19-
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final",
20-
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0-rc2-final",
12+
"Microsoft.AspNetCore.Mvc": "1.0.0",
13+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
14+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
15+
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
16+
"Microsoft.Extensions.Configuration.Json": "1.0.0",
17+
"Microsoft.Extensions.Logging": "1.0.0",
18+
"Microsoft.Extensions.Logging.Console": "1.0.0",
19+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
20+
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0",
2121
"Microsoft.NETCore.App": {
2222
"type": "platform",
23-
"version": "1.0.0-rc2-3002702"
23+
"version": "1.0.0"
2424
}
2525
},
2626

@@ -36,7 +36,7 @@
3636

3737
"tools": {
3838
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
39-
"version": "1.0.0-preview1-final",
39+
"version": "1.0.0-preview2-final",
4040
"imports": "portable-net45+win8+dnxcore50"
4141
}
4242
},

0 commit comments

Comments
 (0)