-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
25 lines (25 loc) · 1.08 KB
/
App.config
File metadata and controls
25 lines (25 loc) · 1.08 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="src-conn" value="mongodb://xx:xx@xx.documents.azure.com:10255/?ssl=true&replicaSet=globaldb"></add>
<add key="dest-conn" value="mongodb://xx:xx@xx.documents.azure.com:10255/?ssl=true&replicaSet=globaldb"></add>
<add key="srcDbName" value="perf2"/>
<add key="srcCollectionName" value="charge"/>
<add key="destDbName" value="perf2"/>
<add key="destCollectionName" value="d2"/>
<add key="failedDocsPath" value="failed.csv"></add>
<add key="batchsize" value="50"/>
<add key="insertRetries" value="10"/>
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>