2012-07-18 04:35:30 +06:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
|
|
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
|
|
|
|
|
<!--
|
2012-11-22 09:30:07 -01:00
|
|
|
CAREFUL!
|
|
|
|
|
========
|
2016-02-09 11:44:55 +01:00
|
|
|
|
2012-11-22 09:30:07 -01:00
|
|
|
ONLY edit this if a certain change NEEDS to go into the config file of EVERYBODY contributing to the project.
|
2016-02-09 11:44:55 +01:00
|
|
|
|
2012-11-22 09:30:07 -01:00
|
|
|
After first build you will get your own web.config, which is no included in source control.
|
2016-02-09 11:44:55 +01:00
|
|
|
|
2012-11-22 09:30:07 -01:00
|
|
|
In the web.config you can edit all you want, it won't be overwritten, but it WILL be altered by this transform file.
|
2016-02-09 11:44:55 +01:00
|
|
|
|
2012-11-22 09:30:07 -01:00
|
|
|
The transforms in this file only apply to debugging, not to the web.config that will be released, see web.Template.Release.config for that
|
2016-02-09 11:44:55 +01:00
|
|
|
|
2012-07-18 04:35:30 +06:00
|
|
|
-->
|
2012-12-10 11:51:04 -01:00
|
|
|
|
2013-09-26 10:50:19 +10:00
|
|
|
|
2013-02-02 02:16:44 +06:00
|
|
|
<configSections>
|
2017-03-14 16:36:15 +11:00
|
|
|
<section name="urlrewritingnet" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
|
2014-03-07 16:28:52 +00:00
|
|
|
<section name="Examine" xdt:Locator="Match(name)" xdt:Transform="SetAttributes(type)" />
|
|
|
|
|
<section name="ExamineLuceneIndexSets" xdt:Locator="Match(name)" xdt:Transform="SetAttributes(type)" />
|
2013-09-13 14:06:36 +10:00
|
|
|
|
2013-09-26 11:57:45 +10:00
|
|
|
<section name="BaseRestExtensions" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
<section name="FileSystemProviders" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
|
|
|
|
|
<sectionGroup name="system.web.webPages.razor" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
2013-09-26 10:50:19 +10:00
|
|
|
|
2013-09-13 14:06:36 +10:00
|
|
|
<sectionGroup name="umbracoConfiguration" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
<sectionGroup name="umbracoConfiguration" xdt:Transform="Insert">
|
|
|
|
|
<section name="settings" type="Umbraco.Core.Configuration.UmbracoSettings.UmbracoSettingsSection, Umbraco.Core" requirePermission="false" />
|
2014-03-07 16:28:52 +00:00
|
|
|
<section name="BaseRestExtensions" type="Umbraco.Core.Configuration.BaseRest.BaseRestSection, Umbraco.Core" requirePermission="false" />
|
|
|
|
|
<section name="FileSystemProviders" type="Umbraco.Core.Configuration.FileSystemProvidersSection, Umbraco.Core" requirePermission="false" />
|
|
|
|
|
<section name="dashBoard" type="Umbraco.Core.Configuration.Dashboard.DashboardSection, Umbraco.Core" requirePermission="false" />
|
2017-06-05 10:08:57 +02:00
|
|
|
<section name="HealthChecks" type="Umbraco.Core.Configuration.HealthChecks.HealthChecksSection, Umbraco.Core" requirePermission="false" />
|
2013-09-13 14:06:36 +10:00
|
|
|
</sectionGroup>
|
2013-09-26 10:50:19 +10:00
|
|
|
|
2013-02-02 02:16:44 +06:00
|
|
|
</configSections>
|
2013-09-13 14:06:36 +10:00
|
|
|
|
2017-03-14 16:36:15 +11:00
|
|
|
<urlrewritingnet xdt:Transform="Remove" />
|
|
|
|
|
|
2013-09-16 16:16:42 +10:00
|
|
|
<BaseRestExtensions xdt:Transform="Remove" />
|
|
|
|
|
<FileSystemProviders xdt:Transform="Remove" />
|
2014-03-07 16:28:52 +00:00
|
|
|
<umbracoConfiguration xdt:Transform="Remove" />
|
2013-09-13 14:06:36 +10:00
|
|
|
<umbracoConfiguration xdt:Transform="InsertBefore(/configuration/appSettings)">
|
|
|
|
|
<settings configSource="config\umbracoSettings.config" />
|
2013-09-16 16:16:42 +10:00
|
|
|
<BaseRestExtensions configSource="config\BaseRestExtensions.config" />
|
|
|
|
|
<FileSystemProviders configSource="config\FileSystemProviders.config" />
|
2014-03-07 16:28:52 +00:00
|
|
|
<dashBoard configSource="config\Dashboard.config" />
|
2017-06-05 09:21:35 +02:00
|
|
|
<HealthChecks configSource="config\HealthChecks.config" />
|
2013-09-13 14:06:36 +10:00
|
|
|
</umbracoConfiguration>
|
|
|
|
|
|
2013-12-06 11:52:47 +11:00
|
|
|
<appSettings xdt:Transform="Remove" xdt:Locator="Condition(@configSource != '')" />
|
2014-03-07 16:28:52 +00:00
|
|
|
<appSettings xdt:Transform="InsertIfMissing">
|
2013-12-06 11:52:47 +11:00
|
|
|
<add key="umbracoConfigurationStatus" value="" />
|
2018-07-17 12:25:57 +12:00
|
|
|
<add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx,~/VSEnterpriseHelper.axd,~/.well-known" />
|
2013-12-06 11:52:47 +11:00
|
|
|
<add key="umbracoReservedPaths" value="~/umbraco,~/install/" />
|
|
|
|
|
<add key="umbracoPath" value="~/umbraco" />
|
|
|
|
|
<add key="umbracoHideTopLevelNodeFromPath" value="true" />
|
|
|
|
|
<add key="umbracoUseDirectoryUrls" value="true" />
|
|
|
|
|
<add key="umbracoTimeOutInMinutes" value="20" />
|
|
|
|
|
<add key="umbracoDefaultUILanguage" value="en" />
|
|
|
|
|
<add key="umbracoUseSSL" value="false" />
|
|
|
|
|
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
|
2014-03-07 16:28:52 +00:00
|
|
|
<add key="webpages:Enabled" value="false" />
|
|
|
|
|
<add key="enableSimpleMembership" value="false" />
|
|
|
|
|
<add key="autoFormsAuthentication" value="false" />
|
|
|
|
|
<add key="log4net.Config" value="config\log4net.config" />
|
2015-03-30 20:13:03 +11:00
|
|
|
<add key="owin:appStartup" value="UmbracoDefaultOwinStartup" xdt:Transform="InsertIfMissing" xdt:Locator="Match(key)" />
|
2013-12-06 11:52:47 +11:00
|
|
|
</appSettings>
|
2015-06-06 22:35:24 +02:00
|
|
|
|
2013-12-06 11:52:47 +11:00
|
|
|
<connectionStrings xdt:Transform="Remove" xdt:Locator="Condition(@configSource != '')" />
|
|
|
|
|
<connectionStrings xdt:Transform="InsertIfMissing">
|
2014-03-07 16:28:52 +00:00
|
|
|
<remove name="umbracoDbDSN" />
|
2013-12-06 11:52:47 +11:00
|
|
|
<add name="umbracoDbDSN" connectionString="" providerName="" />
|
2014-10-17 17:24:32 +02:00
|
|
|
</connectionStrings>
|
2013-10-04 10:53:22 +10:00
|
|
|
|
2014-03-13 20:14:11 +11:00
|
|
|
<system.data>
|
|
|
|
|
<DbProviderFactories>
|
|
|
|
|
<add name="Microsoft SQL Server Compact Data Provider 4.0" xdt:Locator="Match(name)" xdt:Transform="SetAttributes(type)"
|
|
|
|
|
type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe" />
|
|
|
|
|
<add name="MySQL Data Provider" xdt:Locator="Match(name)" xdt:Transform="SetAttributes(type)"
|
|
|
|
|
type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data" />
|
2014-10-17 17:24:32 +02:00
|
|
|
</DbProviderFactories>
|
2014-03-13 20:14:11 +11:00
|
|
|
</system.data>
|
|
|
|
|
|
2012-07-18 04:35:30 +06:00
|
|
|
<system.web>
|
2014-03-07 16:28:52 +00:00
|
|
|
<xhtmlConformance xdt:Transform="Remove" />
|
2013-08-29 13:54:30 +02:00
|
|
|
<membership defaultProvider="UmbracoMembershipProvider">
|
|
|
|
|
<providers>
|
|
|
|
|
<add name="UmbracoMembershipProvider" defaultMemberTypeAlias="Member"
|
|
|
|
|
xdt:Locator="Condition(@defaultMemberTypeAlias='Another Type' and @name='UmbracoMembershipProvider')"
|
2014-03-07 16:28:52 +00:00
|
|
|
xdt:Transform="SetAttributes(defaultMemberTypeAlias)" />
|
2013-08-29 13:54:30 +02:00
|
|
|
</providers>
|
|
|
|
|
</membership>
|
2013-09-26 10:50:19 +10:00
|
|
|
|
2016-01-13 17:27:56 +01:00
|
|
|
<httpRuntime targetFramework="4.5" fcnMode="Single" maxRequestLength="1048576" xdt:Transform="SetAttributes(targetFramework,fcnMode,maxRequestLength)" />
|
2013-09-26 10:50:19 +10:00
|
|
|
|
|
|
|
|
<compilation debug="true" targetFramework="4.5" xdt:Transform="SetAttributes(debug,targetFramework)">
|
2014-03-07 16:28:52 +00:00
|
|
|
<assemblies xdt:Transform="Remove" />
|
2014-10-17 17:24:32 +02:00
|
|
|
<assemblies xdt:Transform="Insert" />
|
|
|
|
|
<assemblies>
|
|
|
|
|
<add assembly="System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="Insert" />
|
|
|
|
|
<add assembly="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" xdt:Locator="Match(assembly)" xdt:Transform="Insert" />
|
2015-10-15 13:10:59 +02:00
|
|
|
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="Insert" />
|
2014-10-17 17:24:32 +02:00
|
|
|
</assemblies>
|
2013-09-26 10:50:19 +10:00
|
|
|
</compilation>
|
|
|
|
|
|
2017-03-14 16:36:15 +11:00
|
|
|
<httpModules>
|
|
|
|
|
<add name="UrlRewriteModule" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
|
|
|
|
</httpModules>
|
2013-09-26 10:50:19 +10:00
|
|
|
<httpHandlers>
|
2014-03-07 16:28:52 +00:00
|
|
|
<add path="GoogleSpellChecker.ashx" xdt:Transform="Remove" xdt:Locator="Match(path)" />
|
2017-07-20 15:47:26 +10:00
|
|
|
<add path="umbraco/channels.aspx" xdt:Transform="Remove" xdt:Locator="Match(path)" />
|
|
|
|
|
<add path="umbraco/channels/word.aspx" xdt:Transform="Remove" xdt:Locator="Match(path)" />
|
2013-09-26 10:50:19 +10:00
|
|
|
</httpHandlers>
|
2012-07-18 04:35:30 +06:00
|
|
|
</system.web>
|
2017-03-24 14:47:27 +01:00
|
|
|
|
2016-02-11 17:10:06 +01:00
|
|
|
<system.web>
|
|
|
|
|
<compilation xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<compilation>
|
|
|
|
|
<assemblies xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<assemblies>
|
|
|
|
|
<add assembly="System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<add assembly="System.Collections, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Collections.Concurrent, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ComponentModel.Annotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ComponentModel.EventBasedAsync, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Diagnostics.Contracts, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Diagnostics.Debug, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Diagnostics.Tools, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Diagnostics.Tracing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Dynamic.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Globalization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.IO, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Linq.Expressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Linq.Parallel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Linq.Queryable, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Net.NetworkInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Net.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Net.Requests, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ObjectModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Reflection, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Reflection.Emit, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Reflection.Emit.ILGeneration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Reflection.Emit.Lightweight, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Reflection.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Reflection.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Resources.ResourceManager, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime.InteropServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime.InteropServices.WindowsRuntime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime.Serialization.Json, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime.Serialization.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Runtime.Serialization.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Security.Principal, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ServiceModel.Duplex, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ServiceModel.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ServiceModel.NetTcp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ServiceModel.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.ServiceModel.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Text.Encoding, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Text.Encoding.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Text.RegularExpressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Threading, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Threading.Tasks, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Threading.Tasks.Parallel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Xml.ReaderWriter, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Xml.XDocument, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<add assembly="System.Xml.XmlSerializer, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" xdt:Locator="Match(assembly)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
</assemblies>
|
|
|
|
|
</compilation>
|
|
|
|
|
|
|
|
|
|
<compilation>
|
|
|
|
|
<assemblies>
|
|
|
|
|
<remove assembly="System.Web.Http" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Net.Http" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Collections" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Collections.Concurrent" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ComponentModel" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ComponentModel.Annotations" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ComponentModel.EventBasedAsync" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Diagnostics.Contracts" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Diagnostics.Debug" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Diagnostics.Tools" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Diagnostics.Tracing" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Dynamic.Runtime" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Globalization" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.IO" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Linq" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Linq.Expressions" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Linq.Parallel" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Linq.Queryable" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Net.NetworkInformation" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Net.Primitives" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Net.Requests" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ObjectModel" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Reflection" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Reflection.Emit" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Reflection.Emit.ILGeneration" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Reflection.Emit.Lightweight" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Reflection.Extensions" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Reflection.Primitives" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Resources.ResourceManager" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime.Extensions" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime.InteropServices" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime.InteropServices.WindowsRuntime" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime.Numerics" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime.Serialization.Json" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime.Serialization.Primitives" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Runtime.Serialization.Xml" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Security.Principal" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ServiceModel.Duplex" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ServiceModel.Http" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ServiceModel.NetTcp" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ServiceModel.Primitives" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.ServiceModel.Security" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Text.Encoding" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Text.Encoding.Extensions" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Text.RegularExpressions" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Threading" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Threading.Tasks" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Threading.Tasks.Parallel" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Xml.ReaderWriter" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Xml.XDocument" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
<remove assembly="System.Xml.XmlSerializer" xdt:Locator="Match(assembly)" xdt:Transform="Remove" />
|
|
|
|
|
</assemblies>
|
|
|
|
|
</compilation>
|
|
|
|
|
<compilation>
|
|
|
|
|
<assemblies>
|
|
|
|
|
<remove assembly="System.Web.Http" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Net.Http" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Collections" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Collections.Concurrent" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ComponentModel" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ComponentModel.Annotations" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ComponentModel.EventBasedAsync" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Diagnostics.Contracts" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Diagnostics.Debug" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Diagnostics.Tools" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Diagnostics.Tracing" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Dynamic.Runtime" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Globalization" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.IO" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Linq" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Linq.Expressions" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Linq.Parallel" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Linq.Queryable" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Net.NetworkInformation" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Net.Primitives" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Net.Requests" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ObjectModel" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Reflection" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Reflection.Emit" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Reflection.Emit.ILGeneration" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Reflection.Emit.Lightweight" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Reflection.Extensions" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Reflection.Primitives" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Resources.ResourceManager" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime.Extensions" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime.InteropServices" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime.InteropServices.WindowsRuntime" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime.Numerics" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime.Serialization.Json" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime.Serialization.Primitives" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Runtime.Serialization.Xml" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Security.Principal" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ServiceModel.Duplex" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ServiceModel.Http" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ServiceModel.NetTcp" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ServiceModel.Primitives" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.ServiceModel.Security" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Text.Encoding" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Text.Encoding.Extensions" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Text.RegularExpressions" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Threading" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Threading.Tasks" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Threading.Tasks.Parallel" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Xml.ReaderWriter" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Xml.XDocument" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
<remove assembly="System.Xml.XmlSerializer" xdt:Locator="Match(assembly)" xdt:Transform="InsertBefore(/configuration/system.web/compilation/assemblies/add)" />
|
|
|
|
|
</assemblies>
|
|
|
|
|
</compilation>
|
|
|
|
|
|
|
|
|
|
<httpModules xdt:Transform="InsertIfMissing" />
|
|
|
|
|
<httpModules>
|
|
|
|
|
<add name="umbracoRequestModule" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
<add name="umbracoBaseRequestModule" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
<add name="viewstateMoverModule" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
<add name=" UmbracoModule" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
<add name="UmbracoModule" type="Umbraco.Web.UmbracoModule,umbraco" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
</httpModules>
|
2017-03-24 14:47:27 +01:00
|
|
|
|
2016-02-11 17:10:06 +01:00
|
|
|
</system.web>
|
2012-12-09 00:50:58 +05:00
|
|
|
|
2017-03-24 14:47:27 +01:00
|
|
|
|
2013-09-26 10:50:19 +10:00
|
|
|
<system.web.extensions xdt:Transform="Remove" />
|
|
|
|
|
|
|
|
|
|
<system.webServer>
|
2017-03-14 16:36:15 +11:00
|
|
|
<modules runAllManagedModulesForAllRequests="true">
|
|
|
|
|
<remove name="UrlRewriteModule" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
|
|
|
|
<add name="UrlRewriteModule" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
|
|
|
|
</modules>
|
2013-09-26 10:50:19 +10:00
|
|
|
<handlers>
|
|
|
|
|
<remove name="SpellChecker" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
2014-03-07 16:28:52 +00:00
|
|
|
<add name="SpellChecker" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
2017-07-20 15:47:26 +10:00
|
|
|
<remove name="Channels" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
|
|
|
|
<add name="Channels" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
|
|
|
|
<remove name="Channels_Word" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
|
|
|
|
<add name="Channels_Word" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
2013-09-26 10:50:19 +10:00
|
|
|
</handlers>
|
2016-01-13 17:27:56 +01:00
|
|
|
|
|
|
|
|
<!-- Increase the default upload file size limit -->
|
|
|
|
|
<security xdt:Transform="InsertIfMissing">
|
|
|
|
|
<requestFiltering xdt:Transform="InsertIfMissing">
|
|
|
|
|
<requestLimits maxAllowedContentLength="1073741824" xdt:Transform="InsertIfMissing" />
|
|
|
|
|
</requestFiltering>
|
|
|
|
|
</security>
|
2016-02-09 11:44:55 +01:00
|
|
|
|
2013-09-26 10:50:19 +10:00
|
|
|
</system.webServer>
|
2013-09-26 11:57:45 +10:00
|
|
|
|
2012-12-10 11:51:04 -01:00
|
|
|
<runtime>
|
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
2012-12-09 00:50:58 +05:00
|
|
|
|
2012-12-10 11:51:04 -01:00
|
|
|
<!-- Ensure correct version of MVC -->
|
|
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
2014-03-07 16:28:52 +00:00
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='System.Web.Helpers']])" />
|
2012-12-10 11:51:04 -01:00
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
|
2015-07-30 16:47:05 +02:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
2012-12-10 11:51:04 -01:00
|
|
|
</dependentAssembly>
|
2012-12-09 00:50:58 +05:00
|
|
|
|
2012-12-10 11:51:04 -01:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
2014-03-07 16:28:52 +00:00
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='System.Web.Mvc']])" />
|
2012-12-10 11:51:04 -01:00
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
2015-07-30 16:47:05 +02:00
|
|
|
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
|
2015-05-11 11:45:13 +10:00
|
|
|
</dependentAssembly>
|
2015-06-06 22:35:24 +02:00
|
|
|
|
|
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='System.Net.Http']])"/>
|
2015-05-11 11:45:13 +10:00
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="System.Net.Http" publicKeyToken="31bf3856ad364e35" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
|
2012-12-10 11:51:04 -01:00
|
|
|
</dependentAssembly>
|
2012-12-09 00:50:58 +05:00
|
|
|
|
2015-06-06 22:35:24 +02:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='System.Web.Http']])"/>
|
|
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0"/>
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2012-12-10 11:51:04 -01:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
2014-03-07 16:28:52 +00:00
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='System.Web.WebPages']])" />
|
2012-12-10 11:51:04 -01:00
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
|
2015-07-30 16:47:05 +02:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
2012-12-10 11:51:04 -01:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2013-01-07 07:46:59 -01:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
2014-03-07 16:28:52 +00:00
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='System.Web.WebPages.Razor']])" />
|
2013-01-07 07:46:59 -01:00
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="System.Web.WebPages.Razor" publicKeyToken="31bf3856ad364e35" />
|
2015-07-30 16:47:05 +02:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
2013-01-07 07:46:59 -01:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2013-07-26 15:16:55 +02:00
|
|
|
|
|
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
2014-03-07 16:28:52 +00:00
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='HtmlAgilityPack']])" />
|
2013-07-26 15:16:55 +02:00
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="HtmlAgilityPack" publicKeyToken="bd319b19eaf3b43a" culture="neutral" />
|
2017-04-07 11:37:23 +10:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-1.4.9.5" newVersion="1.4.9.5" />
|
2013-07-26 15:16:55 +02:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2014-04-08 11:37:40 +02:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='Newtonsoft.Json']])"/>
|
|
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
2017-04-06 16:27:41 +02:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
|
2014-04-08 11:37:40 +02:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2015-03-25 19:01:29 +11:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='Microsoft.Owin']])" />
|
|
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
2017-07-26 17:50:58 +10:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
2015-03-25 19:01:29 +11:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
|
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='Microsoft.Owin.Security']])" />
|
|
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
2017-07-26 17:50:58 +10:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
2015-03-25 19:01:29 +11:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
|
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='Microsoft.Owin.Security.Cookies']])" />
|
|
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
2017-07-26 17:50:58 +10:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
2015-03-25 19:01:29 +11:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
|
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='Microsoft.Owin.Security.OAuth']])" />
|
|
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
2017-07-26 17:50:58 +10:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
|
2015-03-25 19:01:29 +11:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2017-02-06 23:07:20 +11:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='log4net']])" />
|
|
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral" />
|
2017-04-07 11:37:23 +10:00
|
|
|
<bindingRedirect oldVersion="0.0.0.0-2.0.8.0" newVersion="2.0.8.0"/>
|
2017-02-06 23:07:20 +11:00
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2012-12-10 11:51:04 -01:00
|
|
|
</assemblyBinding>
|
2013-09-26 10:50:19 +10:00
|
|
|
|
2012-12-10 11:51:04 -01:00
|
|
|
</runtime>
|
|
|
|
|
|
2013-09-26 11:57:45 +10:00
|
|
|
<system.web.webPages.razor xdt:Transform="Remove" />
|
2014-10-17 17:24:32 +02:00
|
|
|
|
2018-07-17 12:25:57 +12:00
|
|
|
</configuration>
|