You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
3.2 KiB
XML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="quartz" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<appSettings>
<!-- 服务的名称、显示名称 -->
<add key="ServiceName" value="MyshippingCommonService" />
<add key="ServiceDisplayName" value="大简云-通用服务程序" />
<!-- 大简云任务附件文件存放路径,例如 E:\MYSHIPPING -->
<add key="MyshippingTaskFilePath" value="" />
<!-- EML文件存放路径例如 E:\MYSHIPPING若不指定则默认使用当前服务目录 -->
<add key="EmlFilePath" value="" />
<!-- rabbitmq地址 -->
<add key="OutputMQUri" value="amqp://djy_output:123qwe@47.104.207.5:12567/djy.output.test" />
<!-- rabbitmq地址动作日志 -->
<add key="ActionLogMQUri" value="amqp://djy_action:123qwe@47.104.207.5:12567/djy.action.test" />
<!-- CMA订舱异常通知群 -->
<add key="DingTalkCmaExceptNotify" value="https://oapi.dingtalk.com/robot/send?access_token=d94bdad0759217169e4229491326ee32ce86049b506e3c18c3e1c1085263ff2b"/>
<!-- FTP发送异常通知群 -->
<add key="FtpUploadExceptNotify" value="https://oapi.dingtalk.com/robot/send?access_token=336904456f0e2df2d06a7cf835d7ce6735947ff4d8a0135bcdd50124a62aa251"/>
</appSettings>
<connectionStrings>
<add name="DongShengDB" connectionString="Data Source=60.209.125.238,28000;Initial Catalog=DevDsPingTai;Persist Security Info=True;User ID=dev;Password=dev123" providerName="System.Data.SqlClient" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<entityFramework>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<quartz>
<add key="quartz.scheduler.instanceName" value="ServerScheduler" />
<add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz" />
<add key="quartz.threadPool.threadCount" value="10" />
<add key="quartz.threadPool.threadPriority" value="2" />
<add key="quartz.plugin.xml.type" value="Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz" />
<add key="quartz.plugin.xml.fileNames" value="~/quartz_jobs.xml" />
<add key="quartz.jobStore.misfireThreshold" value="30000" />
<add key="quartz.jobStore.type" value="Quartz.Simpl.RAMJobStore, Quartz" />
</quartz>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>