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 1.0 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
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <configSections>
  4. <section name="codeItemsSection" type="SourceTool.CodeItemsSection, SourceTool" />
  5. </configSections>
  6. <codeItemsSection>
  7. <codeItems>
  8. <!-- we can use regex because we know function is implemented at the end of the class [regexs are not good to handle non-regular langs] -->
  9. <add typeRegex="\s([\S]+)\s:\sRichCardScorable[^{]+{"
  10. codeRegex="IList&lt;Attachment&gt;\sGetCardAttachments\(\)[^{]+{([\s\S]+)}[^}]+}[^}]+">
  11. <replacements>
  12. <add replacementRegex="return\s" replacementValue="message.Attachments = " />
  13. </replacements>
  14. </add>
  15. </codeItems>
  16. </codeItemsSection>
  17. <system.diagnostics>
  18. <trace autoflush="false" indentsize="4">
  19. <listeners>
  20. <add name="configConsoleListener" type="System.Diagnostics.ConsoleTraceListener" />
  21. </listeners>
  22. </trace>
  23. </system.diagnostics>
  24. <startup>
  25. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  26. </startup>
  27. </configuration>
Tip!

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

Comments

Loading...