This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"schemaVersion":1,"label":"coverage","message":"77%","color":"yellow"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"schemaVersion":1,"label":"coverage","message":"0%","color":"red"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function FindProxyForURL(url, host) { | |
| if (!( | |
| dnsDomainIs(host, ".ru") || | |
| dnsDomainIs(host, ".su") || | |
| dnsDomainIs(host, ".xn--p1ai") || | |
| shExpMatch(host, "*.ru") || | |
| shExpMatch(host, "*.su") || | |
| shExpMatch(host, "*.xn--p1ai") | |
| )) { | |
| return "DIRECT"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function FindProxyForURL(url, host) { | |
| if ( | |
| dnsDomainIs(host, ".ru") || | |
| dnsDomainIs(host, ".su") || | |
| dnsDomainIs(host, ".xn--p1ai") || | |
| shExpMatch(host, "*.ru") || | |
| shExpMatch(host, "*.su") || | |
| shExpMatch(host, "*.xn--p1ai") | |
| ) { | |
| return "DIRECT"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"schemaVersion":1,"label":"coverage","message":"28%","color":"orange"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"schemaVersion":1,"label":"coverage","message":"71%","color":"yellow"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"schemaVersion":1,"label":"coverage","message":"91%","color":"green"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"schemaVersion":1,"label":"coverage","message":"85%","color":"yellowgreen"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Concurrent; | |
| using System.Xml.Linq; | |
| using Mono.Cecil; | |
| using Mono.Cecil.Cil; | |
| namespace ExceptionRetriever; | |
| public class ExceptionExtractor | |
| { | |
| public static void ExtractExceptions(string assemblyPath, string xmlDocPath) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Buffers; | |
| using System.Net.WebSockets; | |
| using System.Text; | |
| using NAudio.Wave; | |
| namespace ConsoleApp1; | |
| public class Program | |
| { | |
| public static async Task Main(string[] args) |
NewerOlder