-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
33 lines (31 loc) · 1.26 KB
/
App.config
File metadata and controls
33 lines (31 loc) · 1.26 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<appSettings>
<!-- 1. Source information - Cosmos DB -->
<add key="SourceEndPointUrl" value="" />
<add key="SourceAuthorizationKey" value="" />
<add key="SourceDatabaseName" value="" />
<add key="SourceCollectionName" value="" />
<add key="PartitionKeyFieldName" value="" />
<!-- 1.1. Read settings for Source -->
<add key="MaxItemCount" value="1000" />
<add key="MaxBufferedItemCount" value="1000" />
<add key="DegreeOfParallelism" value="10"/>
<!-- 2. Destination information - Cosmos DB -->
<add key="DestinationEndPointUrl" value="" />
<add key="DestinationAuthorizationKey" value="" />
<add key="DestinationDatabaseName" value="" />
<add key="DestinationCollectionName" value="" />
</appSettings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>