Machine specific config files are no longer necessary. Upon first build, you get

a new web.config file thats never commited to the repo, edit this one all you
want. It gets some values overwritten by the web.Template.Debug.config because
they should be used by everybody deving on the core (currently only MedTrust).
This commit is contained in:
Sebastiaan Janssen
2012-11-25 08:22:07 -01:00
parent 97ebf8d51b
commit 72eb1a573d
29 changed files with 10 additions and 1007 deletions

View File

@@ -13,9 +13,7 @@
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-08 SJ - Add Medium trust for everybody so we'll see errors early on
2012-11-22 SJ - Added MVC v2 redirect to v3 because ClientDependency.Mvc is built against MVC2
(not sure if this is the right thing to do but at least the project runs again)
2012-11-08 SJ - Add Medium trust for everybody so we'll see any MedTrust related errors early on
-->
<system.web>
@@ -23,22 +21,4 @@
<trust level="Medium" xdt:Transform="Remove" />
<trust level="Medium" originUrl=".*" xdt:Transform="Insert" />
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly xdt:Transform="RemoveAll" />
<dependentAssembly xdt:Transform="Insert">
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly xdt:Transform="Insert">
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly xdt:Transform="Insert">
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>