Update libraries
This commit is contained in:
+24
-20
@@ -5,15 +5,15 @@
|
||||
-->
|
||||
<configuration>
|
||||
<configSections>
|
||||
|
||||
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
<!--
|
||||
IMPORTANT NOTE: Starting with release 2.0 the config file is in the "\Backload" folder.
|
||||
For more on config options and settings refer to the wiki on GitHub (https://github.com/blackcity/Backload)
|
||||
You can also find all config options in the "Web.Backload.Default.txt" file (Backload\Config\_Defaults folder).
|
||||
-->
|
||||
<section name="backload" type="Backload.Configuration.BackloadSection, Backload, Version=2, Culture=neutral, PublicKeyToken=02eaf42ab375d363" requirePermission="false" />
|
||||
<!-- 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" />
|
||||
</configSections>
|
||||
--><section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||
<section name="backload" type="Backload.Configuration.BackloadSection, Backload, Version=2, Culture=neutral, PublicKeyToken=02eaf42ab375d363" requirePermission="false" /></configSections>
|
||||
<connectionStrings>
|
||||
<add name="LeafWebContext" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=LeafWeb;Integrated Security=True;Connect Timeout=60" providerName="System.Data.SqlClient" />
|
||||
</connectionStrings>
|
||||
@@ -35,9 +35,9 @@
|
||||
<add key="ResultsDownloadPath" value="Results/Download?token={0}" />
|
||||
</appSettings>
|
||||
<system.web>
|
||||
<compilation debug="true" targetFramework="4.5" />
|
||||
<!-- max 1GB -->
|
||||
<httpRuntime targetFramework="4.5" executionTimeout="3600" maxRequestLength="1000000000" />
|
||||
<compilation targetFramework="4.5" debug="true" />
|
||||
|
||||
<!-- max 1GB --><httpRuntime targetFramework="4.5" executionTimeout="3600" maxRequestLength="1000000000" />
|
||||
<globalization culture="en-US" uiCulture="en-US" enableClientBasedCulture="false" requestEncoding="utf-8" responseEncoding="utf-8" />
|
||||
</system.web>
|
||||
<runtime>
|
||||
@@ -62,30 +62,34 @@
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<!-- Note: Web.Backload.config is now in the "\Backload" folder. For previous installations you can leave it in the root folder. -->
|
||||
<backload configSource="Backload\Web.Backload.config" />
|
||||
|
||||
|
||||
<system.webServer>
|
||||
<security>
|
||||
<requestFiltering>
|
||||
<!-- max 1GB -->
|
||||
<requestLimits maxAllowedContentLength="1000000000" />
|
||||
</requestFiltering>
|
||||
</security>
|
||||
<!-- Allow http DELETE method-->
|
||||
<modules runAllManagedModulesForAllRequests="true" />
|
||||
|
||||
|
||||
|
||||
<staticContent>
|
||||
<remove fileExtension=".woff" />
|
||||
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
|
||||
<remove fileExtension=".woff2" />
|
||||
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
|
||||
</staticContent>
|
||||
</system.webServer>
|
||||
<security>
|
||||
<requestFiltering>
|
||||
<!-- max 1GB -->
|
||||
<requestLimits maxAllowedContentLength="1000000000" />
|
||||
</requestFiltering>
|
||||
</security><!-- Allow http DELETE method--><modules runAllManagedModulesForAllRequests="true" /></system.webServer>
|
||||
<entityFramework>
|
||||
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
|
||||
<providers>
|
||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||
</providers>
|
||||
</entityFramework>
|
||||
</configuration>
|
||||
<!-- Note: Web.Backload.config is now in the "\Backload" folder. For previous installations you can leave it in the root folder. --><backload configSource="Backload\Web.Backload.config" /></configuration>
|
||||
Reference in New Issue
Block a user