0
で、GitHub for ClrMdは、私はNuGet介しClrMdを追加した交換()
// If we just happen to have the correct dac file installed on the machine,
// the "TryGetDacLocation" function will return its location on disk:
string dacLocation = version.TryGetDacLocation();
を読み取ります。プロパティではMicrosoft.Diagnostics.Runtime
バージョン0.8.31.1と表示され、そのメソッドはClrVersion
オブジェクトで使用できません。
class Program
{
static void Main(string[] args)
{
var dump = DataTarget.LoadCrashDump(args[0]);
dump.SymbolLocator.SymbolPath = @"srv*d:\debug\symbols\*https://msdl.microsoft.com/download/symbols";
// TODO: Hack. We assume that there's at least one runtime.
ClrInfo clrVersion = dump.ClrVersions[0];
}
}
私は、メソッドが削除されたと述べているthis questionを見てきました - しかし、私が代わりに何をしますか?
あなたのソリューションを実証する小さなコード例を提供することを検討してください – Murmel