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.1 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
81
82
83
84
85
86
87
88
89
90
91
  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. <!--
  13. This is a free trial Microsoft Bing Spell Check key with limited QPS.
  14. Please subscribe to create your own key and try it out further.
  15. Subscription URL: https://www.microsoft.com/cognitive-services/en-us/subscriptions?productId=/products/56ec2df6dbe2d91324586008
  16. -->
  17. <add key="BingSpellCheckApiKey" value="8ae90e80bc4346d59c0f07529dadaa4e" />
  18. <!-- Boolean value to enable correcting the text before processing it-->
  19. <add key="IsSpellCorrectionEnabled" value="false" />
  20. </appSettings>
  21. <!--
  22. For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
  23. The following attributes can be set on the <httpRuntime> tag.
  24. <system.Web>
  25. <httpRuntime targetFramework="4.6" />
  26. </system.Web>
  27. -->
  28. <system.web>
  29. <customErrors mode="Off" />
  30. <compilation debug="true" targetFramework="4.6" />
  31. <httpRuntime targetFramework="4.6" />
  32. </system.web>
  33. <system.webServer>
  34. <defaultDocument>
  35. <files>
  36. <clear />
  37. <add value="default.htm" />
  38. </files>
  39. </defaultDocument>
  40. <handlers>
  41. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  42. <remove name="OPTIONSVerbHandler" />
  43. <remove name="TRACEVerbHandler" />
  44. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  45. </handlers>
  46. </system.webServer>
  47. <runtime>
  48. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  49. <dependentAssembly>
  50. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  51. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  52. </dependentAssembly>
  53. <dependentAssembly>
  54. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  55. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  56. </dependentAssembly>
  57. <dependentAssembly>
  58. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  59. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  60. </dependentAssembly>
  61. <dependentAssembly>
  62. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  63. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  64. </dependentAssembly>
  65. <dependentAssembly>
  66. <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  67. <bindingRedirect oldVersion="0.0.0.0-4.2.29.0" newVersion="4.2.29.0" />
  68. </dependentAssembly>
  69. <dependentAssembly>
  70. <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  71. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  72. </dependentAssembly>
  73. <dependentAssembly>
  74. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  75. <bindingRedirect oldVersion="0.0.0.0-4.2.1.0" newVersion="4.2.1.0" />
  76. </dependentAssembly>
  77. <dependentAssembly>
  78. <assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  79. <bindingRedirect oldVersion="0.0.0.0-4.0.30826.1200" newVersion="4.0.30826.1200" />
  80. </dependentAssembly>
  81. <dependentAssembly>
  82. <assemblyIdentity name="Microsoft.IdentityModel.Protocol.Extensions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  83. <bindingRedirect oldVersion="0.0.0.0-1.0.3.42" newVersion="1.0.3.42" />
  84. </dependentAssembly>
  85. </assemblyBinding>
  86. </runtime>
  87. </configuration>
Tip!

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

Comments

Loading...