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 3.3 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
  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=301879
  5. -->
  6. <configuration>
  7. <appSettings>
  8. <!-- update these with your BotId, Microsoft App Id and your Microsoft App Password-->
  9. <add key="BotId" value="your_bot_id" />
  10. <add key="MicrosoftAppId" value="" />
  11. <add key="MicrosoftAppPassword" value="" />
  12. </appSettings>
  13. <!--
  14. For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
  15. The following attributes can be set on the <httpRuntime> tag.
  16. <system.Web>
  17. <httpRuntime targetFramework="4.6" />
  18. </system.Web>
  19. -->
  20. <system.web>
  21. <compilation debug="true" targetFramework="4.6" />
  22. <httpRuntime targetFramework="4.6" />
  23. </system.web>
  24. <system.webServer>
  25. <defaultDocument>
  26. <files>
  27. <clear />
  28. <add value="default.htm" />
  29. </files>
  30. </defaultDocument>
  31. <handlers>
  32. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  33. <remove name="OPTIONSVerbHandler" />
  34. <remove name="TRACEVerbHandler" />
  35. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  36. </handlers></system.webServer>
  37. <runtime>
  38. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  39. <dependentAssembly>
  40. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  41. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  42. </dependentAssembly>
  43. <dependentAssembly>
  44. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  45. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.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="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  53. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  54. </dependentAssembly>
  55. <dependentAssembly>
  56. <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  57. <bindingRedirect oldVersion="0.0.0.0-4.2.29.0" newVersion="4.2.29.0" />
  58. </dependentAssembly>
  59. <dependentAssembly>
  60. <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  61. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  62. </dependentAssembly>
  63. <dependentAssembly>
  64. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  65. <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
  66. </dependentAssembly>
  67. <dependentAssembly>
  68. <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  69. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  70. </dependentAssembly>
  71. </assemblyBinding>
  72. </runtime>
  73. </configuration>
Tip!

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

Comments

Loading...