|
123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
- </startup>
- <appSettings>
- <!--0正式 1测试-->
- <add key="IsDebug" value="1" />
- <!--是否输出信息日志0否-->
- <add key="OutputVideoLog" value="0" />
- <!--版本号-->
- <add key="VersionCode" value="4" />
- <add key="VersionName" value="1.0.4" />
- <!--图片压缩质量 0最差 100最佳-->
- <add key="ImageCompressionLevel" value="100" />
- <add key="userName" value="" />
- <add key="password" value="" />
- <add key="isRemind" value="" />
- <!--流媒体服务器地址-->
- <add key="ServerPath" value="live2.xhkjedu.com" />
- <!--API请求地址-->
- <add key="APIRequestAddress" value="http://schoolapi.xhkjedu.com" />
- <!--文件平台请求地址-->
- <add key="FileRequestAddress" value="http://schoolfile.xhkjedu.com" />
- <!--展示文件服务器请求地址-->
- <add key="SchoolfileRequestAddress" value="http://schoolfile.xhkjedu.com" />
- <!--认证请求地址-->
- <add key="CertapiRequestAddress" value="http://certapi.xhkjedu.com" />
- </appSettings>
- <runtime>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <dependentAssembly>
- <assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral" />
- <bindingRedirect oldVersion="0.0.0.0-1.2.13.0" newVersion="1.2.13.0" />
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
- <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
- </dependentAssembly>
- </assemblyBinding>
- </runtime>
- </configuration>
|