Skip to main content

Andrew Fitzpatrick

Blogs from this Author

Sitecore with Slow Cheetah and Web Deploy

When you combine Slow Cheetah with Web Deploy in a Sitecore solution you get the benefits of quick deployments with the ability to store any custom code and configuration in your source control. Slow Cheetah brings xml transformations to Sitecore so you only specify the differences between configuration files and can store every environment’s configuration […]

Web.config Transformation and XPath to update bindingRedirect

You can use Web.config transformations to update the bindingRedirect element in the web.config of an asp.net website.  This is more complex than other xdt transforms because the only identifying information is in a sibling assemblyIdentity element.  For example, the configuration for the default Sitecore System.Web.MVC dependentAssembly element looks like the following: <configuration> <runtime> <assemblyBinding xmlns=”urn:schemas-microsoft-com:asm.v1″> <dependentAssembly> <assemblyIdentity name=”System.Web.Mvc” publicKeyToken=”31bf3856ad364e35″ xmlns=”urn:schemas-microsoft-com:asm.v1″ /> […]