Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. For more information on how to configure your ASP.NET application, please visit
  4. http://go.microsoft.com/fwlink/?LinkId=301880
  5. -->
  6. <configuration>
  7. <appSettings>
  8. <add key="webpages:Version" value="3.0.0.0" />
  9. <add key="webpages:Enabled" value="false" />
  10. <add key="ClientValidationEnabled" value="true" />
  11. <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  12. <add key="DD4T.ComponentPresentationController" value="Component" />
  13. <add key="DD4T.ComponentPresentationAction" value="ComponentPresentation" />
  14. <add key="DD4T.PublicationId" value="18" />
  15. <!--<add key="DD4T.WelcomeFile" value="index.html" />-->
  16. <add key="discovery-service-uri" value="http://localhost:8082/discovery.svc" />
  17. </appSettings>
  18. <system.web>
  19. <compilation debug="true" targetFramework="4.5.2" />
  20. <httpRuntime targetFramework="4.5.2" />
  21. </system.web>
  22. <runtime>
  23. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  24. <dependentAssembly>
  25. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  26. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  27. </dependentAssembly>
  28. <dependentAssembly>
  29. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  30. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  31. </dependentAssembly>
  32. <dependentAssembly>
  33. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  34. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  35. </dependentAssembly>
  36. <dependentAssembly>
  37. <assemblyIdentity name="DD4T.ContentModel" publicKeyToken="4450e3c7f68bf872" culture="neutral" />
  38. <bindingRedirect oldVersion="0.0.0.0-2.2.2.0" newVersion="2.2.2.0" />
  39. </dependentAssembly>
  40. <dependentAssembly>
  41. <assemblyIdentity name="DD4T.ContentModel.Contracts" publicKeyToken="4450e3c7f68bf872" culture="neutral" />
  42. <bindingRedirect oldVersion="0.0.0.0-2.2.2.0" newVersion="2.2.2.0" />
  43. </dependentAssembly>
  44. <dependentAssembly>
  45. <assemblyIdentity name="DD4T.Serialization" publicKeyToken="4450e3c7f68bf872" culture="neutral" />
  46. <bindingRedirect oldVersion="0.0.0.0-2.2.2.0" newVersion="2.2.2.0" />
  47. </dependentAssembly>
  48. <dependentAssembly>
  49. <assemblyIdentity name="Tridion.ContentDelivery" publicKeyToken="ddfc895746e5ee6b" culture="neutral" />
  50. <bindingRedirect oldVersion="0.0.0.0-7.0.0.322" newVersion="8.5.0.1014" />
  51. </dependentAssembly>
  52. </assemblyBinding>
  53. </runtime>
  54. <system.webServer>
  55. <handlers>
  56. <add name="HtmlFileHandler" path="*.html" verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  57. </handlers>
  58. <tracing>
  59. <traceFailedRequests>
  60. <add path="*">
  61. <traceAreas>
  62. <add provider="ASPNET" areas="Infrastructure,Module,Page,AppServices" verbosity="Verbose" />
  63. <add provider="WWW Server" areas="Security" verbosity="Verbose" />
  64. </traceAreas>
  65. <failureDefinitions timeTaken="00:00:00" statusCodes="404" />
  66. </add>
  67. </traceFailedRequests>
  68. </tracing>
  69. <validation validateIntegratedModeConfiguration="false"/>
  70. <modules runAllManagedModulesForAllRequests="true"/>
  71. </system.webServer>
  72. <system.codedom>
  73. <compilers>
  74. <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
  75. <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
  76. </compilers>
  77. </system.codedom>
  78. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement