Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Web.config 4.0 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  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="LUIS_SubscriptionKey" value="YourSubscriptionKey" />
  13. <add key="LUIS_ModelId" value="YourModelId" />
  14. </appSettings>
  15. <!--
  16. For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
  17. The following attributes can be set on the <httpRuntime> tag.
  18. <system.Web>
  19. <httpRuntime targetFramework="4.6" />
  20. </system.Web>
  21. -->
  22. <system.web>
  23. <compilation debug="true" targetFramework="4.6" />
  24. <httpRuntime targetFramework="4.5.2" />
  25. </system.web>
  26. <runtime>
  27. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  28. <dependentAssembly>
  29. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  30. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  31. </dependentAssembly>
  32. <dependentAssembly>
  33. <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
  34. <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
  35. </dependentAssembly>
  36. <dependentAssembly>
  37. <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
  38. <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  39. </dependentAssembly>
  40. <dependentAssembly>
  41. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  42. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  43. </dependentAssembly>
  44. <dependentAssembly>
  45. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  46. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  47. </dependentAssembly>
  48. <dependentAssembly>
  49. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  50. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  51. </dependentAssembly>
  52. <dependentAssembly>
  53. <assemblyIdentity name="Microsoft.Bot.Connector" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  54. <bindingRedirect oldVersion="0.0.0.0-3.8.0.0" newVersion="3.8.0.0" />
  55. </dependentAssembly>
  56. <dependentAssembly>
  57. <assemblyIdentity name="Microsoft.Bot.Builder" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  58. <bindingRedirect oldVersion="0.0.0.0-3.5.3.0" newVersion="3.5.3.0" />
  59. </dependentAssembly>
  60. </assemblyBinding>
  61. </runtime>
  62. <system.codedom>
  63. <compilers>
  64. <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" />
  65. <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+" />
  66. </compilers>
  67. </system.codedom>
  68. <system.webServer>
  69. <handlers>
  70. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  71. <remove name="OPTIONSVerbHandler" />
  72. <remove name="TRACEVerbHandler" />
  73. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  74. </handlers>
  75. </system.webServer></configuration>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...