gitextract_4_7p2e3s/ ├── DotDumper/ │ ├── ArgumentHandler.cs │ ├── Config.cs │ ├── DotDumper.csproj │ ├── Helpers/ │ │ ├── ArgumentHelper.cs │ │ ├── AssemblyMapper.cs │ │ ├── Hashes.cs │ │ ├── LogEntryHelper.cs │ │ ├── MissedAssemblyDumper.cs │ │ ├── RaceConditionHandler.cs │ │ ├── Serialise.cs │ │ └── StagnationHandler.cs │ ├── HookHandlers/ │ │ ├── Activator/ │ │ │ └── ActivatorHooks.cs │ │ ├── Assembly/ │ │ │ └── AssemblyHooks.cs │ │ ├── Console/ │ │ │ └── ConsoleHooks.cs │ │ ├── Convert/ │ │ │ └── ConvertHooks.cs │ │ ├── Directory/ │ │ │ └── DirectoryHooks.cs │ │ ├── Environment/ │ │ │ └── EnvironmentHooks.cs │ │ ├── File/ │ │ │ └── FileHooks.cs │ │ ├── GenericHookHelper.cs │ │ ├── MethodBase/ │ │ │ └── MethodBaseHooks.cs │ │ ├── Path/ │ │ │ └── PathHooks.cs │ │ ├── Process/ │ │ │ └── ProcessHooks.cs │ │ ├── ResourceManager/ │ │ │ └── ResourceManagerHooks.cs │ │ ├── Thread/ │ │ │ └── ThreadHooks.cs │ │ └── Type/ │ │ ├── TypeHooks.cs │ │ └── TypeHooksHelper.cs │ ├── Hooks/ │ │ ├── Hook.cs │ │ ├── HookManager.cs │ │ ├── InteropFunctions.cs │ │ ├── OriginalManagedFunctions.cs │ │ └── OriginalUnmanagedFunctions.cs │ ├── Logger.cs │ ├── Models/ │ │ ├── Argument.cs │ │ ├── AssemblyObject.cs │ │ ├── Hash.cs │ │ ├── LogEntry.cs │ │ └── UnmanagedMethodInfo.cs │ ├── Pipes/ │ │ └── PipeManager.cs │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── app.config │ ├── bin/ │ │ └── Debug/ │ │ ├── DotDumper.exe.config │ │ ├── DotDumper.pdb │ │ ├── System.Buffers.xml │ │ ├── System.Memory.xml │ │ ├── System.Numerics.Vectors.xml │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ └── System.Security.Cryptography.Pkcs.xml │ ├── obj/ │ │ ├── Debug/ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── DotDumper.csproj.AssemblyReference.cache │ │ │ ├── DotDumper.csproj.CopyComplete │ │ │ ├── DotDumper.csproj.CoreCompileInputs.cache │ │ │ ├── DotDumper.csproj.FileListAbsolute.txt │ │ │ └── DotDumper.pdb │ │ └── x64/ │ │ └── Debug/ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── DotDumper.csproj.AssemblyReference.cache │ │ ├── DotDumper.csproj.CoreCompileInputs.cache │ │ ├── DotDumper.csproj.FileListAbsolute.txt │ │ └── DotDumper.pdb │ └── packages.config ├── DotDumper.sln ├── LICENSE ├── README.md └── packages/ ├── PeNet.2.9.9/ │ ├── .signature.p7s │ └── PeNet.2.9.9.nupkg ├── PeNet.Asn1.2.0.0/ │ ├── .signature.p7s │ └── PeNet.Asn1.2.0.0.nupkg ├── System.Buffers.4.5.1/ │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Buffers.4.5.1.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib/ │ │ ├── net461/ │ │ │ └── System.Buffers.xml │ │ ├── netcoreapp2.0/ │ │ │ └── _._ │ │ ├── netstandard1.1/ │ │ │ └── System.Buffers.xml │ │ ├── netstandard2.0/ │ │ │ └── System.Buffers.xml │ │ └── uap10.0.16299/ │ │ └── _._ │ ├── ref/ │ │ ├── net45/ │ │ │ └── System.Buffers.xml │ │ ├── netcoreapp2.0/ │ │ │ └── _._ │ │ ├── netstandard1.1/ │ │ │ └── System.Buffers.xml │ │ ├── netstandard2.0/ │ │ │ └── System.Buffers.xml │ │ └── uap10.0.16299/ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt ├── System.Diagnostics.Process.4.3.0/ │ ├── .signature.p7s │ ├── System.Diagnostics.Process.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib/ │ │ ├── MonoAndroid10/ │ │ │ └── _._ │ │ ├── MonoTouch10/ │ │ │ └── _._ │ │ ├── xamarinios10/ │ │ │ └── _._ │ │ ├── xamarinmac20/ │ │ │ └── _._ │ │ ├── xamarintvos10/ │ │ │ └── _._ │ │ └── xamarinwatchos10/ │ │ └── _._ │ ├── ref/ │ │ ├── MonoAndroid10/ │ │ │ └── _._ │ │ ├── MonoTouch10/ │ │ │ └── _._ │ │ ├── netstandard1.3/ │ │ │ ├── System.Diagnostics.Process.xml │ │ │ ├── de/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── es/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── fr/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── it/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── ja/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── ko/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── ru/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── zh-hans/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ └── zh-hant/ │ │ │ └── System.Diagnostics.Process.xml │ │ ├── netstandard1.4/ │ │ │ ├── System.Diagnostics.Process.xml │ │ │ ├── de/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── es/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── fr/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── it/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── ja/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── ko/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── ru/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ ├── zh-hans/ │ │ │ │ └── System.Diagnostics.Process.xml │ │ │ └── zh-hant/ │ │ │ └── System.Diagnostics.Process.xml │ │ ├── xamarinios10/ │ │ │ └── _._ │ │ ├── xamarinmac20/ │ │ │ └── _._ │ │ ├── xamarintvos10/ │ │ │ └── _._ │ │ └── xamarinwatchos10/ │ │ └── _._ │ └── runtimes/ │ └── win7/ │ └── lib/ │ └── netcore50/ │ └── _._ ├── System.Memory.4.5.5/ │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Memory.4.5.5.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib/ │ │ ├── net461/ │ │ │ └── System.Memory.xml │ │ ├── netcoreapp2.1/ │ │ │ └── _._ │ │ ├── netstandard1.1/ │ │ │ └── System.Memory.xml │ │ └── netstandard2.0/ │ │ └── System.Memory.xml │ ├── ref/ │ │ └── netcoreapp2.1/ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt ├── System.Numerics.Vectors.4.5.0/ │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Numerics.Vectors.4.5.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib/ │ │ ├── MonoAndroid10/ │ │ │ └── _._ │ │ ├── MonoTouch10/ │ │ │ └── _._ │ │ ├── net46/ │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netcoreapp2.0/ │ │ │ └── _._ │ │ ├── netstandard1.0/ │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netstandard2.0/ │ │ │ └── System.Numerics.Vectors.xml │ │ ├── portable-net45+win8+wp8+wpa81/ │ │ │ └── System.Numerics.Vectors.xml │ │ ├── uap10.0.16299/ │ │ │ └── _._ │ │ ├── xamarinios10/ │ │ │ └── _._ │ │ ├── xamarinmac20/ │ │ │ └── _._ │ │ ├── xamarintvos10/ │ │ │ └── _._ │ │ └── xamarinwatchos10/ │ │ └── _._ │ ├── ref/ │ │ ├── MonoAndroid10/ │ │ │ └── _._ │ │ ├── MonoTouch10/ │ │ │ └── _._ │ │ ├── net45/ │ │ │ └── System.Numerics.Vectors.xml │ │ ├── net46/ │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netcoreapp2.0/ │ │ │ └── _._ │ │ ├── netstandard1.0/ │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netstandard2.0/ │ │ │ └── System.Numerics.Vectors.xml │ │ ├── uap10.0.16299/ │ │ │ └── _._ │ │ ├── xamarinios10/ │ │ │ └── _._ │ │ ├── xamarinmac20/ │ │ │ └── _._ │ │ ├── xamarintvos10/ │ │ │ └── _._ │ │ └── xamarinwatchos10/ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt ├── System.Runtime.CompilerServices.Unsafe.6.0.0/ │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── System.Runtime.CompilerServices.Unsafe.6.0.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── buildTransitive/ │ │ ├── netcoreapp2.0/ │ │ │ └── System.Runtime.CompilerServices.Unsafe.targets │ │ └── netcoreapp3.1/ │ │ └── _._ │ ├── lib/ │ │ ├── net461/ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── net6.0/ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── netcoreapp3.1/ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ └── netstandard2.0/ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── useSharedDesignerContext.txt └── System.Security.Cryptography.Pkcs.6.0.1/ ├── .signature.p7s ├── LICENSE.TXT ├── System.Security.Cryptography.Pkcs.6.0.1.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── buildTransitive/ │ ├── netcoreapp2.0/ │ │ └── System.Security.Cryptography.Pkcs.targets │ └── netcoreapp3.1/ │ └── _._ ├── lib/ │ ├── net461/ │ │ └── System.Security.Cryptography.Pkcs.xml │ ├── net6.0/ │ │ └── System.Security.Cryptography.Pkcs.xml │ ├── netcoreapp3.1/ │ │ └── System.Security.Cryptography.Pkcs.xml │ ├── netstandard2.0/ │ │ └── System.Security.Cryptography.Pkcs.xml │ └── netstandard2.1/ │ └── System.Security.Cryptography.Pkcs.xml ├── runtimes/ │ └── win/ │ └── lib/ │ ├── net461/ │ │ └── System.Security.Cryptography.Pkcs.xml │ ├── net6.0/ │ │ └── System.Security.Cryptography.Pkcs.xml │ ├── netcoreapp3.1/ │ │ └── System.Security.Cryptography.Pkcs.xml │ ├── netstandard2.0/ │ │ └── System.Security.Cryptography.Pkcs.xml │ └── netstandard2.1/ │ └── System.Security.Cryptography.Pkcs.xml └── useSharedDesignerContext.txt