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.
61 lines
3.4 KiB
XML
61 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<configSections>
|
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
|
</configSections>
|
|
<startup>
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
|
</startup>
|
|
<appSettings>
|
|
<add key="portHangFireDashboard" value="5555"/>
|
|
<add key="smtpServer" value="smtp-pt.securemail.pro" />
|
|
<add key="smtpPort" value="465" />
|
|
<add key="smtpSsl" value="true" />
|
|
<add key="serilog:minimum-level" value="Debug" />
|
|
<add key="serilog:enrich:with-property:Application" value="HangFireServer" />
|
|
<add key="serilog:enrich:with-property:Environment" value="PROD"/>
|
|
<add key="serilog:using:File" value="Serilog.Sinks.File" />
|
|
<add key="serilog:write-to:File.rollingInterval" value="Day" />
|
|
<add key="serilog:write-to:File.rollOnFileSizeLimit" value="true" />
|
|
<add key="serilog:write-to:File.fileSizeLimitBytes" value="2048000" />
|
|
<add key="serilog:write-to:File.path" value="C:\TempDenariu\Logs\hangfire.log" />
|
|
<add key="serilog:write-to:File.retainedFileCountLimit" value="50" />
|
|
</appSettings>
|
|
<connectionStrings>
|
|
<add name="HangFireDb" connectionString="Data Source=localhost\sql2019;Initial Catalog=GCIJobs;User ID=sa; Password=123qwe"/>
|
|
<add name="UTLDbContext" connectionString="Data Source=localhost\sql2019; Initial Catalog=GCI; User ID=sa; Password=123qwe; MultipleActiveResultSets=True;" providerName="System.Data.SqlClient" />
|
|
</connectionStrings>
|
|
<runtime>
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
|
</dependentAssembly>
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
|
|
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
|
|
</dependentAssembly>
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="MimeKit" publicKeyToken="bede1c8a46c66814" culture="neutral" />
|
|
<bindingRedirect oldVersion="0.0.0.0-2.4.0.0" newVersion="2.4.0.0" />
|
|
</dependentAssembly>
|
|
<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>
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" />
|
|
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
|
|
</dependentAssembly>
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="BouncyCastle.Crypto" publicKeyToken="0e99375e54769942" culture="neutral" />
|
|
<bindingRedirect oldVersion="0.0.0.0-1.8.6.0" newVersion="1.8.6.0" />
|
|
</dependentAssembly>
|
|
</assemblyBinding>
|
|
</runtime>
|
|
<entityFramework>
|
|
<providers>
|
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
|
</providers>
|
|
</entityFramework>
|
|
</configuration> |