├── .gitattributes ├── .gitignore ├── .nuget ├── BuildCommon.targets ├── NuGet.Config ├── NuGet.targets └── semver.txt ├── CommonAssemblyInfo.cs ├── LICENSE.md ├── Lib └── dia2lib │ ├── gen_dia2lib.cmd │ ├── net20 │ └── dia2lib.dll │ └── net40 │ └── dia2lib.dll ├── ProductionStackTrace.Analyze.Console ├── App.config ├── ConsoleEx.cs ├── ConsoleTextReader.cs ├── ProductionStackTrace.Analyze.Console.csproj ├── ProductionStackTrace.Analyze.Console.nuspec ├── ProductionStackTrace.Analyze.psm1 ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── init.ps1 ├── ProductionStackTrace.Analyze ├── ExceptionReportInterpreter.cs ├── ProductionStackTrace.Analyze.csproj ├── ProductionStackTrace.Analyze.nuspec ├── Properties │ └── AssemblyInfo.cs ├── SourceLocation.cs ├── SymbolLoader.cs ├── SymbolSearch.cs └── packages.config ├── ProductionStackTrace.Test.Library ├── ProductionStackTrace.Test.Library.csproj ├── Properties │ └── AssemblyInfo.cs └── SomeClass.cs ├── ProductionStackTrace.Test ├── IsolatedEnvironment.cs ├── IsolatedMethodResult.cs ├── ProductionStackTrace.Test.csproj ├── Properties │ └── AssemblyInfo.cs ├── TestExceptionReporting.cs └── packages.config ├── ProductionStackTrace.sln ├── ProductionStackTrace ├── ExceptionEx.cs ├── ExceptionReporting.cs ├── Internals │ ├── AssemblyDebugInfo.cs │ └── PeHeaders.cs ├── ProductionStackTrace.csproj ├── ProductionStackTrace.nuspec └── Properties │ └── AssemblyInfo.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/BuildCommon.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/.nuget/BuildCommon.targets -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.nuget/semver.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Lib/dia2lib/gen_dia2lib.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/Lib/dia2lib/gen_dia2lib.cmd -------------------------------------------------------------------------------- /Lib/dia2lib/net20/dia2lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/Lib/dia2lib/net20/dia2lib.dll -------------------------------------------------------------------------------- /Lib/dia2lib/net40/dia2lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/Lib/dia2lib/net40/dia2lib.dll -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/App.config -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/ConsoleEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/ConsoleEx.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/ConsoleTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/ConsoleTextReader.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/ProductionStackTrace.Analyze.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/ProductionStackTrace.Analyze.Console.csproj -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/ProductionStackTrace.Analyze.Console.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/ProductionStackTrace.Analyze.Console.nuspec -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/ProductionStackTrace.Analyze.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/ProductionStackTrace.Analyze.psm1 -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/Program.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze.Console/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze.Console/init.ps1 -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze/ExceptionReportInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze/ExceptionReportInterpreter.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze/ProductionStackTrace.Analyze.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze/ProductionStackTrace.Analyze.csproj -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze/ProductionStackTrace.Analyze.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze/ProductionStackTrace.Analyze.nuspec -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze/SourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze/SourceLocation.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze/SymbolLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze/SymbolLoader.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze/SymbolSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze/SymbolSearch.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Analyze/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Analyze/packages.config -------------------------------------------------------------------------------- /ProductionStackTrace.Test.Library/ProductionStackTrace.Test.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test.Library/ProductionStackTrace.Test.Library.csproj -------------------------------------------------------------------------------- /ProductionStackTrace.Test.Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test.Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Test.Library/SomeClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test.Library/SomeClass.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Test/IsolatedEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test/IsolatedEnvironment.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Test/IsolatedMethodResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test/IsolatedMethodResult.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Test/ProductionStackTrace.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test/ProductionStackTrace.Test.csproj -------------------------------------------------------------------------------- /ProductionStackTrace.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Test/TestExceptionReporting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test/TestExceptionReporting.cs -------------------------------------------------------------------------------- /ProductionStackTrace.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.Test/packages.config -------------------------------------------------------------------------------- /ProductionStackTrace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace.sln -------------------------------------------------------------------------------- /ProductionStackTrace/ExceptionEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace/ExceptionEx.cs -------------------------------------------------------------------------------- /ProductionStackTrace/ExceptionReporting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace/ExceptionReporting.cs -------------------------------------------------------------------------------- /ProductionStackTrace/Internals/AssemblyDebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace/Internals/AssemblyDebugInfo.cs -------------------------------------------------------------------------------- /ProductionStackTrace/Internals/PeHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace/Internals/PeHeaders.cs -------------------------------------------------------------------------------- /ProductionStackTrace/ProductionStackTrace.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace/ProductionStackTrace.csproj -------------------------------------------------------------------------------- /ProductionStackTrace/ProductionStackTrace.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace/ProductionStackTrace.nuspec -------------------------------------------------------------------------------- /ProductionStackTrace/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/ProductionStackTrace/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimelfarb/ProductionStackTrace/HEAD/README.md --------------------------------------------------------------------------------