-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
27 lines (24 loc) · 1.4 KB
/
App.config
File metadata and controls
27 lines (24 loc) · 1.4 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
<connectionStrings>
<clear/>
<!-- When providing a password, make sure to set the app.config file's security so that only you can read it. -->
<!--<add name="default" connectionString="Url=http://myserver/myorg/; Username=name; Password=password; Domain=domain" />-->
<add name="CrmOnline" connectionString="Url=<insert URL></insert>; Username=,<insert username>; Password=<insert password>"/>
</connectionStrings>
<appSettings>
<!--For information on how to register an app and obtain the ClientId and RedirectUrl
values see https://msdn.microsoft.com/dynamics/crm/mt149065 -->
<!--Active Directory application registration. -->
<!--These are dummy values and should be replaced with your actual app registration values.-->
<add key="ClientId" value="<insert app registration id>"/>
<add key="RedirectUrl" value="<insert URL"/>
<!-- Use an alternate configuration file for connection string and setting values. This optional setting
enables use of an app.config file shared among multiple applications. If the specified file does
not exist, this setting is ignored.-->
<add key="AlternateConfig" value="C:\Temp\crmsample.exe.config"/>
</appSettings>
</configuration>