-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathApp.config
More file actions
37 lines (32 loc) · 1.77 KB
/
App.config
File metadata and controls
37 lines (32 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<appSettings>
<!-- The scenario to be run (0 to 10)-->
<add key="scenario" value="" />
<!-- Go to http://partnercenterservice.microsoft.com/pc/pc/APIIntegration to onboard your application-->
<add key="AppId" value="Your App Id" />
<add key="Key" value="Your key goes here" />
<!-- Go to http://partnercenterservice.microsoft.com/pc/AccountSettings/TenantProfile to get this information-->
<add key="MicrosoftId" value="Your Organization Microsoft Id" />
<add key="DefaultDomain" value="Your default domain, something like contoso.onmicrosoft.com" />
<!-- If you an existing Customer, this is the Microsoft Id of that existing customer
Replace the string below with the id of the customer
You can get this by
1. going to Partner center at https://partnercenter.microsoft.com/
2. Sign in with your credentials
3. Click View Customers
4. Expand the customer you are interested in by clicking on the chevron (down arrow)
5. You will find the Microsoft ID, copy that value to this variable
-->
<add key="ExistingCustomerMicrosoftId" value="Your existing customer ID" />
<!-- Go to "https://manage.windowsazure.com/#Workspaces/ActiveDirectoryExtension/directory" to onboard your application-->
<add key="AzureAppId" value="Your Azure App Id" />
<!-- Create a Generic Credential in Credential Manager. Enter the "Internet or network address" -->
<add key="CredentialName" value="Your credential name"/>
<!--Required for Transition Subscription Scenario-->
<add key="Office365SubscriptionId" value="" />
</appSettings>
</configuration>