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

App.config 670 B

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
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <startup>
  4. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
  5. </startup>
  6. <appSettings>
  7. <add key="LUIS_SubscriptionKey" value="YourSubscriptionKey" />
  8. <add key="LUIS_ModelId" value="YourModelId" />
  9. </appSettings>
  10. <runtime>
  11. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  12. <dependentAssembly>
  13. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  14. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  15. </dependentAssembly>
  16. </assemblyBinding>
  17. </runtime>
  18. </configuration>
Tip!

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

Comments

Loading...