Skip to content
This repository has been archived by the owner on Feb 7, 2020. It is now read-only.

Commit

Permalink
Generic config
Browse files Browse the repository at this point in the history
  • Loading branch information
skwan committed Apr 2, 2014
1 parent 48b38e1 commit 94725fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions TodoListDaemon/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
</startup>
<appSettings>
<add key="ida:AADInstance" value="https://login.windows.net/{0}" />
<add key="ida:Tenant" value="skwantoso.com" />
<add key="ida:ClientId" value="a2f3e366-3dd9-4597-8445-ee8cab4eb65a" />
<add key="ida:AppKey" value="NgT0Xhr71BoWyVgnNzmLAeo2TfRREh2nlQDx4gztOLk=" />
<add key="todo:TodoListResourceId" value="https://skwantoso.com/TodoListService" />
<add key="ida:Tenant" value="[Enter tenant name, e.g. contoso.onmicrosoft.com]" />
<add key="ida:ClientId" value="[Enter client ID as obtained from Azure Portal, e.g. 82692da5-a86f-44c9-9d53-2f88d52b478b]" />
<add key="ida:AppKey" value="[Enter app key as obtained from Azure Portal, e.g. NgT0Xhr71CoWyVgnNzmLAeo2RfRREh2nlQDx4gztOLk=]" />
<add key="todo:TodoListResourceId" value="[Enter App ID URI of TodoListService, e.g. https://contoso.onmicrosoft.com/TodoListService]" />
<add key="todo:TodoListBaseAddress" value="https://localhost:44321" />
</appSettings>
</configuration>
6 changes: 3 additions & 3 deletions TodoListService/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="ida:Tenant" value="skwantoso.com" />
<add key="ida:Audience" value="https://skwantoso.com/TodoListService" />
<add key="ida:ClientID" value="6ed17e02-e0a8-4496-b736-5399c117555d" />
<add key="ida:Tenant" value="[Enter tenant name, e.g. contoso.onmicrosoft.com]" />
<add key="ida:Audience" value="[Enter App ID URI of TodoListService, e.g. https://contoso.onmicrosoft.com/TodoListService]" />
<add key="ida:ClientID" value="[Enter client ID as obtained from Azure Portal, e.g. 82692da5-a86f-44c9-9d53-2f88d52b478b]" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
Expand Down

0 comments on commit 94725fe

Please sign in to comment.