Skip to content

Commit dc9bb12

Browse files
authored
Clarify JWT handler version requirement
1 parent 5a91680 commit dc9bb12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ First, in Visual Studio 2013 create an empty solution to host the projects. Th
128128
1. In the solution, create a new ASP.Net MVC web API project called TodoListService-ManualJwt and while creating the project, ensure Authentication is set to No Authentication.
129129
2. Set SSL Enabled to be True. Note the SSL URL.
130130
3. In the project properties, Web properties, set the Project Url to be the SSL URL.
131-
4. Add the (stable) JSON Web Token Handler For the Microsoft .Net Framework 4.5 NuGet, System.IdentityModel.Tokens.Jwt, version 3.0.2 (or higher) to the project.
131+
4. Add the latest stable JSON Web Token Handler For the Microsoft .Net Framework 4.5 NuGet, System.IdentityModel.Tokens.Jwt, version 4.x to the project. Note: Version 5.x will not work with this sample, as it requires .Net Framework 5.x.
132132
5. Add an assembly reference to `System.IdentityModel`.
133133
6. In the `Models` folder add a new class called `TodoItem.cs`. Copy the implementation of TodoItem from this sample into the class.
134134
7. Add a new, empty, Web API 2 controller called `TodoListController`.
@@ -148,4 +148,4 @@ First, in Visual Studio 2013 create an empty solution to host the projects. Th
148148
8. Copy the code from `MainWindow.xaml.cs` in the sample project into the file of same name in the new project, completely replacing the code in the file in the new project.
149149
9. In `app.config` create keys for `ida:AADInstance`, `ida:Tenant`, `ida:ClientId`, `ida:RedirectUri`, `todo:TodoListResourceId`, and `todo:TodoListBaseAddress` and set them accordingly. For the public Azure cloud, the value of `ida:AADInstance` is `https://login.windows.net/{0}`.
150150

151-
Finally, in the properties of the solution itself, set both projects as startup projects.
151+
Finally, in the properties of the solution itself, set both projects as startup projects.

0 commit comments

Comments
 (0)