aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcinzelent <zelent.marcin@protonmail.com>2017-11-20 14:38:12 +0100
committermarcinzelent <zelent.marcin@protonmail.com>2017-11-20 14:38:12 +0100
commit462aed0ddd5dd5cca7fb51175cc0829650e4916c (patch)
treed0948efc256c6ed66a0c71b5ae1f5b9a1112ba6e /packages/Microsoft.AspNet.Mvc.5.2.3/Content
parentf6f830d066635c91763dd1ae6248c8c189e6fe7e (diff)
parent71f272fbc3917dcdd81c2c829bccad9b64eb9128 (diff)
Merge.
Diffstat (limited to 'packages/Microsoft.AspNet.Mvc.5.2.3/Content')
-rw-r--r--packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt34
-rw-r--r--packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt10
2 files changed, 44 insertions, 0 deletions
diff --git a/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt b/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt
new file mode 100644
index 0000000..14e8a93
--- /dev/null
+++ b/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt
@@ -0,0 +1,34 @@
+<?xml version="1.0"?>
+<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
+
+ <!-- If runtime tag is absent -->
+ <runtime xdt:Transform="InsertIfMissing">
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ </assemblyBinding>
+ </runtime>
+
+ <!-- If runtime tag is present, but assembly binding tag is absent -->
+ <runtime>
+ <assemblyBinding xdt:Transform="InsertIfMissing" xmlns="urn:schemas-microsoft-com:asm.v1">
+ </assemblyBinding>
+ </runtime>
+
+ <!-- If the binding redirect is already present, the existing entry needs to be removed before inserting the new entry-->
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly xdt:Transform="Remove"
+ xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Web.Mvc')" >
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+
+ <!-- Inserting the new binding redirect -->
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly xdt:Transform="Insert">
+ <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
+ <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration> \ No newline at end of file
diff --git a/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt b/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt
new file mode 100644
index 0000000..e95055d
--- /dev/null
+++ b/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt
@@ -0,0 +1,10 @@
+<?xml version="1.0"?>
+<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly xdt:Transform="Remove"
+ xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Web.Mvc')" >
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration> \ No newline at end of file