You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,7 +128,7 @@ First, in Visual Studio 2013 create an empty solution to host the projects. Th
128
128
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.
129
129
2. Set SSL Enabled to be True. Note the SSL URL.
130
130
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.
132
132
5. Add an assembly reference to `System.IdentityModel`.
133
133
6. In the `Models` folder add a new class called `TodoItem.cs`. Copy the implementation of TodoItem from this sample into the class.
134
134
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
148
148
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.
149
149
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}`.
150
150
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