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.8 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
  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="" />
  10. <add key="MicrosoftAppId" value="" />
  11. <add key="MicrosoftAppPassword" value="" />
  12. <!-- URL to the Call Controller API on this bot -->
  13. <add key="Microsoft.Bot.Builder.Calling.CallbackUrl" value="" />
  14. <!-- Cognitive Services keys -->
  15. <add key="MicrosoftSpeechApiKey" value="" />
  16. <add key="MicrosoftSpeechRecognitionUri" value="https://speech.platform.bing.com/recognize?scenarios=smd%26appid=D4D52672-91D7-4C74-8AD8-42B1D98141A5%26locale=en-US%26device.os=bot%26form=BCSSTT%26version=3.0%26format=json%26instanceid=565D69FF-E928-4B7E-87DA-9A750B96D9E3%26requestid=" />
  17. </appSettings>
  18. <!--
  19. For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
  20. The following attributes can be set on the <httpRuntime> tag.
  21. <system.Web>
  22. <httpRuntime targetFramework="4.6" />
  23. </system.Web>
  24. -->
  25. <system.web>
  26. <customErrors mode="Off" />
  27. <compilation debug="true" targetFramework="4.6" />
  28. <httpRuntime targetFramework="4.6" />
  29. </system.web>
  30. <system.webServer>
  31. <defaultDocument>
  32. <files>
  33. <clear />
  34. <add value="default.htm" />
  35. </files>
  36. </defaultDocument>
  37. <handlers>
  38. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  39. <remove name="OPTIONSVerbHandler" />
  40. <remove name="TRACEVerbHandler" />
  41. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  42. </handlers></system.webServer>
  43. <runtime>
  44. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  45. <dependentAssembly>
  46. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  47. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  48. </dependentAssembly>
  49. <dependentAssembly>
  50. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  51. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  52. </dependentAssembly>
  53. <dependentAssembly>
  54. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  55. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  56. </dependentAssembly>
  57. <dependentAssembly>
  58. <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  59. <bindingRedirect oldVersion="0.0.0.0-4.2.29.0" newVersion="4.2.29.0" />
  60. </dependentAssembly>
  61. <dependentAssembly>
  62. <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  63. <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  64. </dependentAssembly>
  65. <dependentAssembly>
  66. <assemblyIdentity name="Microsoft.VisualStudio.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  67. <bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
  68. </dependentAssembly>
  69. <dependentAssembly>
  70. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  71. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  72. </dependentAssembly>
  73. <dependentAssembly>
  74. <assemblyIdentity name="Microsoft.Bot.Builder" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  75. <bindingRedirect oldVersion="0.0.0.0-3.8.0.0" newVersion="3.8.0.0" />
  76. </dependentAssembly>
  77. </assemblyBinding>
  78. </runtime>
  79. </configuration>
Tip!

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

Comments

Loading...