Web.config 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. For more information on how to configure your ASP.NET application, please visit
  4. https://go.microsoft.com/fwlink/?LinkId=301880
  5. -->
  6. <configuration>
  7. <configSections>
  8. <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
  9. <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
  10. <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
  11. </sectionGroup>
  12. </configSections>
  13. <system.web.webPages.razor>
  14. <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  15. <pages pageBaseType="System.Web.Mvc.WebViewPage">
  16. <namespaces>
  17. <add namespace="System.Web.Mvc" />
  18. <add namespace="System.Web.Mvc.Ajax" />
  19. <add namespace="System.Web.Mvc.Html" />
  20. <add namespace="System.Web.Routing" />
  21. <add namespace="GreenTree.Nachtragsmanagement.Plugin.Test" />
  22. </namespaces>
  23. </pages>
  24. </system.web.webPages.razor>
  25. <appSettings>
  26. <add key="webpages:Version" value="3.0.0.0" />
  27. <add key="webpages:Enabled" value="false" />
  28. <add key="ClientValidationEnabled" value="true" />
  29. <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  30. </appSettings>
  31. <system.web>
  32. <compilation debug="true" targetFramework="4.5.2" />
  33. <httpRuntime targetFramework="4.5.2" />
  34. </system.web>
  35. <system.webServer>
  36. <handlers>
  37. <remove name="BlockViewHandler" />
  38. <add name="BlockViewHandler" path="~/Views/*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
  39. </handlers>
  40. </system.webServer>
  41. <runtime>
  42. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  43. <dependentAssembly>
  44. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  45. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  46. </dependentAssembly>
  47. <dependentAssembly>
  48. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  49. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  50. </dependentAssembly>
  51. <dependentAssembly>
  52. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  53. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  54. </dependentAssembly>
  55. <dependentAssembly>
  56. <assemblyIdentity name="Quartz" publicKeyToken="f6b8c98a402cc8a4" culture="neutral" />
  57. <bindingRedirect oldVersion="0.0.0.0-2.6.0.0" newVersion="2.6.0.0" />
  58. </dependentAssembly>
  59. <dependentAssembly>
  60. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  61. <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
  62. </dependentAssembly>
  63. </assemblyBinding>
  64. </runtime>
  65. <system.codedom>
  66. <compilers>
  67. <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
  68. <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
  69. </compilers>
  70. </system.codedom>
  71. </configuration>