-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathApp.config
37 lines (35 loc) · 1.64 KB
/
App.config
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.6.1" />
</startup>
<appSettings>
<add key="CustomVision_PredictionKey" value="" />
<add key="CustomVision_TrainingKey" value="" />
<add key="BingImageSearch_Key" value="" />
<add key="BingImageSearch_Url" value="https://api.cognitive.microsoft.com/bing/v7.0/images/search" />
<add key="TrainingImagesCount" value="5"/>
<add key="TestImagesCount" value="3"/>
<add key="Randomize" value="False"/>
<add key="SmartResize" value="False"/>
<add key="AugmentTrainingImages" value="False"/>
<add key="ComputerVision_Url" value="https://westus.api.cognitive.microsoft.com/vision/v1.0/generateThumbnail" />
<add key="ComputerVision_Key" 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-10.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.1.2" newVersion="4.1.1.2" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>