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!
|
|
|
|
|
========
|
|
|
|
|
|
|
|
|
|
ONLY edit this if a certain change NEEDS to go into the config file of EVERYBODY contributing to the project.
|
|
|
|
|
|
|
|
|
|
After first build you will get your own web.config, which is no included in source control.
|
|
|
|
|
|
|
|
|
|
In the web.config you can edit all you want, it won't be overwritten, but it WILL be altered by this transform file.
|
2012-07-18 04:35:30 +06: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
|
|
|
|
|
|
2012-11-25 08:22:07 -01:00
|
|
|
2012-11-08 SJ - Add Medium trust for everybody so we'll see any MedTrust related errors early on
|
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>
|
|
|
|
|
<section name="Examine" type="Examine.Config.ExamineSettings, Examine" xdt:Locator="Match(name)" xdt:Transform="SetAttributes(type)"/>
|
2013-09-13 14:06:36 +10:00
|
|
|
<section name="ExamineLuceneIndexSets" type="Examine.LuceneEngine.Config.IndexSets, Examine" xdt:Locator="Match(name)" xdt:Transform="SetAttributes(type)"/>
|
|
|
|
|
|
2013-09-16 16:16:42 +10:00
|
|
|
<section name="BaseRestExtensions" type="Umbraco.Web.BaseRest.Configuration.BaseRestSection, umbraco" xdt:Locator="Match(name)" xdt:Transform="Remove" />
|
|
|
|
|
<section name="FileSystemProviders" type="Umbraco.Core.Configuration.FileSystemProvidersSection, Umbraco.Core" 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" />
|
2013-09-16 16:16:42 +10: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"/>
|
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
|
|
|
|
2013-09-16 16:16:42 +10:00
|
|
|
<BaseRestExtensions xdt:Transform="Remove" />
|
|
|
|
|
<FileSystemProviders xdt:Transform="Remove" />
|
2013-09-13 14:06:36 +10:00
|
|
|
<umbracoConfiguration xdt:Transform="Remove"/>
|
|
|
|
|
<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" />
|
2013-09-13 14:06:36 +10:00
|
|
|
</umbracoConfiguration>
|
|
|
|
|
|
2012-12-31 12:15:46 -01:00
|
|
|
<appSettings>
|
|
|
|
|
<add key="umbracoDbDSN" xdt:Transform="Remove" xdt:Locator="Match(key)" />
|
|
|
|
|
</appSettings>
|
2013-09-26 10:50:19 +10:00
|
|
|
|
2012-07-18 04:35:30 +06:00
|
|
|
<system.web>
|
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')"
|
|
|
|
|
xdt:Transform="SetAttributes(defaultMemberTypeAlias)"/>
|
|
|
|
|
</providers>
|
|
|
|
|
</membership>
|
2013-09-26 10:50:19 +10:00
|
|
|
|
|
|
|
|
<httpRuntime targetFramework="4.5" xdt:Transform="SetAttributes(targetFramework)"/>
|
|
|
|
|
|
|
|
|
|
<compilation debug="true" targetFramework="4.5" xdt:Transform="SetAttributes(debug,targetFramework)">
|
|
|
|
|
<assemblies xdt:Transform="Remove"/>
|
|
|
|
|
</compilation>
|
2013-06-18 17:22:01 +10:00
|
|
|
<!-- We no longer support medium trust so just remove it -->
|
2012-12-31 12:15:46 -01:00
|
|
|
<trust xdt:Transform="Remove" />
|
2013-09-26 10:50:19 +10:00
|
|
|
|
|
|
|
|
<httpHandlers>
|
|
|
|
|
<add path="GoogleSpellChecker.ashx" xdt:Transform="Remove" xdt:Locator="Match(path)" />
|
|
|
|
|
</httpHandlers>
|
2012-07-18 04:35:30 +06:00
|
|
|
</system.web>
|
2012-12-09 00:50:58 +05:00
|
|
|
|
2013-09-26 10:50:19 +10:00
|
|
|
<system.web.extensions xdt:Transform="Remove" />
|
|
|
|
|
|
|
|
|
|
<system.codedom xdt:Transform="Remove" />
|
|
|
|
|
|
|
|
|
|
<system.webServer>
|
|
|
|
|
<handlers>
|
|
|
|
|
<remove name="SpellChecker" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
|
|
|
|
<add name="SpellChecker" xdt:Transform="Remove" xdt:Locator="Match(name)" />
|
|
|
|
|
</handlers>
|
|
|
|
|
</system.webServer>
|
|
|
|
|
|
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"
|
2012-12-09 00:50:58 +05: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" />
|
|
|
|
|
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
|
|
|
|
</dependentAssembly>
|
2012-12-09 00:50:58 +05:00
|
|
|
|
2012-12-10 11:51:04 -01:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
2012-12-09 00:50:58 +05: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" />
|
|
|
|
|
<bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
|
|
|
|
|
</dependentAssembly>
|
2012-12-09 00:50:58 +05:00
|
|
|
|
2012-12-10 11:51:04 -01:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
2012-12-09 00:50:58 +05: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" />
|
|
|
|
|
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2013-01-07 07:46:59 -01:00
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
2013-01-07 08:55:43 -01: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" />
|
|
|
|
|
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
|
2013-07-26 15:16:55 +02:00
|
|
|
|
|
|
|
|
<dependentAssembly xdt:Transform="Remove"
|
|
|
|
|
xdt:Locator="Condition(_defaultNamespace:assemblyIdentity[@name='HtmlAgilityPack']])"/>
|
|
|
|
|
<dependentAssembly xdt:Transform="Insert">
|
|
|
|
|
<assemblyIdentity name="HtmlAgilityPack" publicKeyToken="bd319b19eaf3b43a" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="1.4.5.0-1.4.6.0" newVersion="1.4.6.0" />
|
|
|
|
|
</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>
|
|
|
|
|
|
2012-07-18 04:35:30 +06:00
|
|
|
</configuration>
|