-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.config
20 lines (20 loc) · 906 Bytes
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<appSettings>
<add key="Endpoint" value="https://switzerlandnorth.api.cognitive.microsoft.com/vision/v3.2/analyze" />
<add key="Parameters" value="?visualFeatures=Categories,Tags,Description,Brands,Color,Faces,ImageType,Objects&details=Landmarks&language=en" />
<add key="Key" value="" />
<add key="TimeoutBetweenCalls" value="3000" />
</appSettings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>