Skip to content
This repository was archived by the owner on Nov 14, 2019. It is now read-only.

Commit 5e33f3f

Browse files
committed
Generic config
1 parent f69dbed commit 5e33f3f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

TodoListClient/App.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
</startup>
66
<appSettings>
77
<add key="ida:AADInstance" value="https://login.windows.net/{0}" />
8-
<add key="ida:Tenant" value="skwantoso.com" />
9-
<add key="ida:ClientId" value="fb715b0e-3ca9-45b8-9928-2329a776b42d" />
10-
<add key="ida:RedirectUri" value="http://TodoListClient" />
11-
<add key="todo:TodoListResourceId" value="https://skwantoso.com/TodoListService" />
8+
<add key="ida:Tenant" value="[Enter tenant name, e.g. contoso.onmicrosoft.com]" />
9+
<add key="ida:ClientId" value="[Enter client ID as obtained from Azure Portal, e.g. 82692da5-a86f-44c9-9d53-2f88d52b478b]" />
10+
<add key="ida:RedirectUri" value="[Enter redirect URI as entered in Azure Portal, e.g. http://TodoListClient]" />
11+
<add key="todo:TodoListResourceId" value="[Enter App ID URI of TodoListService, e.g. https://contoso.onmicrosoft.com/TodoListService]" />
1212
<add key="todo:TodoListBaseAddress" value="https://localhost:44321" />
1313
</appSettings>
1414
</configuration>

TodoListService/Web.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<add key="webpages:Enabled" value="false" />
1010
<add key="ClientValidationEnabled" value="true" />
1111
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
12-
<add key="ida:Tenant" value="skwantoso.com" />
13-
<add key="ida:Audience" value="https://skwantoso.com/TodoListService" />
14-
<add key="ida:ClientID" value="6ed17e02-e0a8-4496-b736-5399c117555d" />
12+
<add key="ida:Tenant" value="[Enter tenant name, e.g. contoso.onmicrosoft.com]" />
13+
<add key="ida:Audience" value="[Enter App ID URI of TodoListService, e.g. https://contoso.onmicrosoft.com/TodoListService]" />
14+
<add key="ida:ClientID" value="[Enter client ID as obtained from Azure Portal, e.g. 82692da5-a86f-44c9-9d53-2f88d52b478b]" />
1515
</appSettings>
1616
<system.web>
1717
<compilation debug="true" targetFramework="4.5" />

0 commit comments

Comments
 (0)