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.6 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
78
79
80
  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="YourBotId" />
  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. <customErrors mode="Off" />
  22. <compilation debug="true" targetFramework="4.6" />
  23. <httpRuntime targetFramework="4.6" />
  24. </system.web>
  25. <system.webServer>
  26. <defaultDocument>
  27. <files>
  28. <clear />
  29. <add value="default.htm" />
  30. </files>
  31. </defaultDocument>
  32. <handlers>
  33. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  34. <remove name="OPTIONSVerbHandler" />
  35. <remove name="TRACEVerbHandler" />
  36. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  37. </handlers></system.webServer>
  38. <runtime>
  39. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  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.Mvc" publicKeyToken="31bf3856ad364e35" />
  46. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  47. </dependentAssembly>
  48. <dependentAssembly>
  49. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  50. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  51. </dependentAssembly>
  52. <dependentAssembly>
  53. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  54. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  55. </dependentAssembly>
  56. <dependentAssembly>
  57. <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  58. <bindingRedirect oldVersion="0.0.0.0-4.2.29.0" newVersion="4.2.29.0" />
  59. </dependentAssembly>
  60. <dependentAssembly>
  61. <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  62. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  63. </dependentAssembly>
  64. <dependentAssembly>
  65. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  66. <bindingRedirect oldVersion="0.0.0.0-4.2.1.0" newVersion="4.2.1.0" />
  67. </dependentAssembly>
  68. <dependentAssembly>
  69. <assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  70. <bindingRedirect oldVersion="0.0.0.0-4.0.30826.1200" newVersion="4.0.30826.1200" />
  71. </dependentAssembly>
  72. <dependentAssembly>
  73. <assemblyIdentity name="Microsoft.IdentityModel.Protocol.Extensions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  74. <bindingRedirect oldVersion="0.0.0.0-1.0.3.42" newVersion="1.0.3.42" />
  75. </dependentAssembly>
  76. </assemblyBinding>
  77. </runtime>
  78. </configuration>
Tip!

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

Comments

Loading...