예제 #1
0
        private ISleetFile GetFile(string fileName, string hash)
        {
            var symbolsPath = SymbolsUtility.GetSymbolsServerPath(fileName, hash);

            return(_context.Source.Get($"/symbols/{symbolsPath}"));
        }
예제 #2
0
        /// <summary>
        /// Path to dll or pdb
        /// Symbols/file/hash/file.dll
        /// </summary>
        public static string GetAssemblyFilePath(string fileName, string hash)
        {
            var symbolsPath = SymbolsUtility.GetSymbolsServerPath(fileName, hash);

            return($"/symbols/{symbolsPath}");
        }