├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── GitVersionConfig.yaml ├── LICENSE ├── README.md ├── deployment ├── FinalBuilder │ └── Orc.CrashReporting.CreatePackages.fbp7 └── NuGet │ └── template │ ├── Orc.CrashReporting.Providers.Email │ └── Orc.CrashReporting.Providers.Email.nuspec │ ├── Orc.CrashReporting.Xaml │ └── Orc.CrashReporting.Xaml.nuspec │ └── Orc.CrashReporting │ └── Orc.CrashReporting.nuspec ├── doc └── images │ ├── Orc.CrashReporting_01.png │ ├── Orc.CrashReporting_02.png │ ├── Orc.CrashReporting_03.png │ ├── Orc.CrashReporting_04.png │ ├── Orc.CrashReporting_05.png │ └── Orc.CrashReporting_06.png ├── lib └── repositories.config ├── scripts - Build - Debug.bat ├── scripts - Build - Release.bat ├── scripts - Clean all.bat ├── scripts - Restore packages.bat ├── src ├── GlobalSuppressions.cs ├── Orc.CrashReporting.Example │ ├── App.xaml │ ├── App.xaml.cs │ ├── FodyWeavers.xml │ ├── ModuleInitializer.cs │ ├── Orc.CrashReporting.Example.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Themes │ │ └── Generic.xaml │ ├── ViewModels │ │ └── MainWindowViewModel.cs │ ├── Views │ │ ├── MainWindowView.xaml │ │ └── MainWindowView.xaml.cs │ ├── app.config │ └── packages.config ├── Orc.CrashReporting.Providers.Email │ ├── Orc.CrashReporting.Providers.Email.NET40 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Providers.Email.NET40.csproj │ │ ├── app.config │ │ └── packages.config │ ├── Orc.CrashReporting.Providers.Email.NET45 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Providers.Email.NET45.csproj │ │ └── packages.config │ ├── Orc.CrashReporting.Providers.Email.NET46 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Providers.Email.NET46.csproj │ │ └── packages.config │ └── Orc.CrashReporting.Providers.Email.Shared │ │ ├── Constants.cs │ │ ├── Extensions │ │ └── EmailExtensions.cs │ │ ├── Models │ │ └── Email.cs │ │ ├── ModuleInitializer.cs │ │ ├── Native │ │ └── Mapi32.cs │ │ ├── Orc.CrashReporting.Providers.Email.Shared.projitems │ │ ├── Orc.CrashReporting.Providers.Email.Shared.shproj │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.NET40.Designer.cs │ │ ├── Resources.NET45.Designer.cs │ │ ├── Resources.NET46.Designer.cs │ │ ├── Resources.de.resx │ │ ├── Resources.es.resx │ │ ├── Resources.fr.resx │ │ ├── Resources.nl.resx │ │ ├── Resources.resx │ │ └── Resources.ru.resx │ │ ├── Providers │ │ └── EmailReportProvider.cs │ │ └── Services │ │ ├── Interfaces │ │ ├── IMapiErrorHandlingService.cs │ │ └── IMapiService.cs │ │ ├── MapiErrorHandlingService.cs │ │ └── MapiService.cs ├── Orc.CrashReporting.Tests │ ├── Orc.CrashReporting.Tests.NET40 │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Tests.NET40.csproj │ │ ├── app.config │ │ └── packages.config │ ├── Orc.CrashReporting.Tests.NET45 │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Tests.NET45.csproj │ │ └── packages.config │ ├── Orc.CrashReporting.Tests.NET46 │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Tests.NET46.csproj │ │ └── packages.config │ └── Orc.CrashReporting.Tests.Shared │ │ ├── DummyFacts.cs │ │ ├── Orc.CrashReporting.Tests.Shared.projitems │ │ ├── Orc.CrashReporting.Tests.Shared.shproj │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Orc.CrashReporting.Xaml │ ├── Orc.CrashReporting.Xaml.NET40 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Xaml.NET40.csproj │ │ ├── app.config │ │ └── packages.config │ ├── Orc.CrashReporting.Xaml.NET45 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Xaml.NET45.csproj │ │ ├── app.config │ │ └── packages.config │ ├── Orc.CrashReporting.Xaml.NET46 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Xaml.NET46.csproj │ │ └── packages.config │ └── Orc.CrashReporting.Xaml.Shared │ │ ├── Extensions │ │ └── ColorExtensions.cs │ │ ├── Helpers │ │ └── AccentColorHelper.cs │ │ ├── Models │ │ └── CrashReportProviderMenuItem.cs │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Xaml.Shared.projitems │ │ ├── Orc.CrashReporting.Xaml.Shared.shproj │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.NET40.Designer.cs │ │ ├── Resources.NET45.Designer.cs │ │ ├── Resources.NET46.Designer.cs │ │ ├── Resources.de.resx │ │ ├── Resources.es.resx │ │ ├── Resources.fr.resx │ │ ├── Resources.nl.resx │ │ ├── Resources.resx │ │ └── Resources.ru.resx │ │ ├── Resources │ │ └── Images │ │ │ ├── error.png │ │ │ └── error1.png │ │ ├── Services │ │ ├── CrashReportProviderMenuService.cs │ │ ├── CrashReporterService.cs │ │ ├── DefaultCrashReportProviderService.cs │ │ └── Interfaces │ │ │ ├── ICrashReportProviderMenuService.cs │ │ │ └── IDefaultCrashReportProviderService.cs │ │ ├── TemplateSelectors │ │ └── CrashDetailsTemplateSelector.cs │ │ ├── Themes │ │ ├── Generic.xaml │ │ └── Styles.xaml │ │ ├── ViewModels │ │ ├── AdditionalInfoViewModel.cs │ │ ├── CrashDetailsViewModel.cs │ │ ├── CrashReportProvidersViewModel.cs │ │ ├── CrashReportViewModel.cs │ │ ├── ExceptionViewModel.cs │ │ ├── LoadedModulesInfoViewModel.cs │ │ └── SystemInfoViewModel.cs │ │ └── Views │ │ ├── AdditionalInfoView.xaml │ │ ├── AdditionalInfoView.xaml.cs │ │ ├── CrashDetailsView.xaml │ │ ├── CrashDetailsView.xaml.cs │ │ ├── CrashReportProvidersView.xaml │ │ ├── CrashReportProvidersView.xaml.cs │ │ ├── CrashReportWindow.xaml │ │ ├── CrashReportWindow.xaml.cs │ │ ├── ExceptionView.xaml │ │ ├── ExceptionView.xaml.cs │ │ ├── LoadedModulesInfoView.xaml │ │ ├── LoadedModulesInfoView.xaml.cs │ │ ├── SystemInfoView.xaml │ │ └── SystemInfoView.xaml.cs ├── Orc.CrashReporting.sln ├── Orc.CrashReporting.sln.DotSettings ├── Orc.CrashReporting │ ├── Orc.CrashReporting.NET40 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.NET40.csproj │ │ ├── app.config │ │ └── packages.config │ ├── Orc.CrashReporting.NET45 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.NET45.csproj │ │ └── packages.config │ ├── Orc.CrashReporting.NET46 │ │ ├── FodyWeavers.xml │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.NET46.csproj │ │ └── packages.config │ └── Orc.CrashReporting.Shared │ │ ├── Constants.cs │ │ ├── Context │ │ ├── CrashReportingContext.cs │ │ └── Interfaces │ │ │ └── ICrashReportingContext.cs │ │ ├── Extensions │ │ ├── ExceptionExtensions.cs │ │ ├── ProcessModuleExtensions.cs │ │ └── SystemInfoExtensions.cs │ │ ├── Factories │ │ ├── CrashReportFactory.cs │ │ └── Interfaces │ │ │ └── ICrashReportFactory.cs │ │ ├── Handlers │ │ └── UnhandledExceptionWatcher.cs │ │ ├── Initializers │ │ └── CrashReporterInitializer.cs │ │ ├── Models │ │ ├── AdditionalInfo.cs │ │ ├── Base │ │ │ └── CrashInfoBase.cs │ │ ├── CrashReport.cs │ │ ├── ExceptionInfo.cs │ │ ├── Interfaces │ │ │ └── ICrashInfo.cs │ │ ├── LoadedModulesInfo.cs │ │ └── SystemInfo.cs │ │ ├── ModuleInitializer.cs │ │ ├── Orc.CrashReporting.Shared.projitems │ │ ├── Orc.CrashReporting.Shared.shproj │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.NET40.Designer.cs │ │ ├── Resources.NET45.Designer.cs │ │ ├── Resources.NET46.Designer.cs │ │ ├── Resources.de.resx │ │ ├── Resources.es.resx │ │ ├── Resources.fr.resx │ │ ├── Resources.nl.resx │ │ ├── Resources.resx │ │ └── Resources.ru.resx │ │ ├── Providers │ │ └── Interfaces │ │ │ └── ICrashReportProvider.cs │ │ ├── Services │ │ ├── CrashInfoService.cs │ │ ├── CrashReportProvidersService.cs │ │ ├── ExceptionHandlerService.cs │ │ └── Interfaces │ │ │ ├── ICrashInfoService.cs │ │ │ ├── ICrashReportProvidersService.cs │ │ │ ├── ICrashReporterService.cs │ │ │ └── IExceptionHandlerService.cs │ │ └── SupportPackage │ │ └── Providers │ │ └── CrashReportSupportPackageProvider.cs ├── SolutionAssemblyInfo.cs └── nuget.config └── tools └── NuGet └── NuGet.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /GitVersionConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/GitVersionConfig.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/README.md -------------------------------------------------------------------------------- /deployment/FinalBuilder/Orc.CrashReporting.CreatePackages.fbp7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/deployment/FinalBuilder/Orc.CrashReporting.CreatePackages.fbp7 -------------------------------------------------------------------------------- /deployment/NuGet/template/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/deployment/NuGet/template/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.nuspec -------------------------------------------------------------------------------- /deployment/NuGet/template/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/deployment/NuGet/template/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.nuspec -------------------------------------------------------------------------------- /deployment/NuGet/template/Orc.CrashReporting/Orc.CrashReporting.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/deployment/NuGet/template/Orc.CrashReporting/Orc.CrashReporting.nuspec -------------------------------------------------------------------------------- /doc/images/Orc.CrashReporting_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/doc/images/Orc.CrashReporting_01.png -------------------------------------------------------------------------------- /doc/images/Orc.CrashReporting_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/doc/images/Orc.CrashReporting_02.png -------------------------------------------------------------------------------- /doc/images/Orc.CrashReporting_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/doc/images/Orc.CrashReporting_03.png -------------------------------------------------------------------------------- /doc/images/Orc.CrashReporting_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/doc/images/Orc.CrashReporting_04.png -------------------------------------------------------------------------------- /doc/images/Orc.CrashReporting_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/doc/images/Orc.CrashReporting_05.png -------------------------------------------------------------------------------- /doc/images/Orc.CrashReporting_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/doc/images/Orc.CrashReporting_06.png -------------------------------------------------------------------------------- /lib/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/lib/repositories.config -------------------------------------------------------------------------------- /scripts - Build - Debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/scripts - Build - Debug.bat -------------------------------------------------------------------------------- /scripts - Build - Release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/scripts - Build - Release.bat -------------------------------------------------------------------------------- /scripts - Clean all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/scripts - Clean all.bat -------------------------------------------------------------------------------- /scripts - Restore packages.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/scripts - Restore packages.bat -------------------------------------------------------------------------------- /src/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/App.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/App.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/Orc.CrashReporting.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/Orc.CrashReporting.Example.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/Views/MainWindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/Views/MainWindowView.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/Views/MainWindowView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/Views/MainWindowView.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/app.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Example/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Example/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/Orc.CrashReporting.Providers.Email.NET40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/Orc.CrashReporting.Providers.Email.NET40.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/app.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET40/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET45/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET45/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET45/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET45/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET45/Orc.CrashReporting.Providers.Email.NET45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET45/Orc.CrashReporting.Providers.Email.NET45.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET45/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET45/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET46/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET46/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET46/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET46/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET46/Orc.CrashReporting.Providers.Email.NET46.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET46/Orc.CrashReporting.Providers.Email.NET46.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET46/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.NET46/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Constants.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Extensions/EmailExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Extensions/EmailExtensions.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Models/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Models/Email.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Native/Mapi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Native/Mapi32.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Orc.CrashReporting.Providers.Email.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Orc.CrashReporting.Providers.Email.Shared.projitems -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Orc.CrashReporting.Providers.Email.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Orc.CrashReporting.Providers.Email.Shared.shproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.NET40.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.NET40.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.NET45.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.NET45.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.NET46.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.NET46.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.es.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.fr.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.nl.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Properties/Resources.ru.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Providers/EmailReportProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Providers/EmailReportProvider.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Services/Interfaces/IMapiErrorHandlingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Services/Interfaces/IMapiErrorHandlingService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Services/Interfaces/IMapiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Services/Interfaces/IMapiService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Services/MapiErrorHandlingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Services/MapiErrorHandlingService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Services/MapiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Providers.Email/Orc.CrashReporting.Providers.Email.Shared/Services/MapiService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET40/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET40/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET40/Orc.CrashReporting.Tests.NET40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET40/Orc.CrashReporting.Tests.NET40.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET40/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET40/app.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET40/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET40/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET45/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET45/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET45/Orc.CrashReporting.Tests.NET45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET45/Orc.CrashReporting.Tests.NET45.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET45/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET45/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET46/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET46/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET46/Orc.CrashReporting.Tests.NET46.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET46/Orc.CrashReporting.Tests.NET46.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET46/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.NET46/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.Shared/DummyFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.Shared/DummyFacts.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.Shared/Orc.CrashReporting.Tests.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.Shared/Orc.CrashReporting.Tests.Shared.projitems -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.Shared/Orc.CrashReporting.Tests.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.Shared/Orc.CrashReporting.Tests.Shared.shproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Tests/Orc.CrashReporting.Tests.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/Orc.CrashReporting.Xaml.NET40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/Orc.CrashReporting.Xaml.NET40.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/app.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET40/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/Orc.CrashReporting.Xaml.NET45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/Orc.CrashReporting.Xaml.NET45.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/app.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET45/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET46/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET46/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET46/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET46/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET46/Orc.CrashReporting.Xaml.NET46.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET46/Orc.CrashReporting.Xaml.NET46.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET46/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.NET46/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Helpers/AccentColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Helpers/AccentColorHelper.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Models/CrashReportProviderMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Models/CrashReportProviderMenuItem.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Orc.CrashReporting.Xaml.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Orc.CrashReporting.Xaml.Shared.projitems -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Orc.CrashReporting.Xaml.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Orc.CrashReporting.Xaml.Shared.shproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.NET40.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.NET40.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.NET45.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.NET45.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.NET46.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.NET46.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.es.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.fr.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.nl.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Properties/Resources.ru.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Resources/Images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Resources/Images/error.png -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Resources/Images/error1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Resources/Images/error1.png -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/CrashReportProviderMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/CrashReportProviderMenuService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/CrashReporterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/CrashReporterService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/DefaultCrashReportProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/DefaultCrashReportProviderService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/Interfaces/ICrashReportProviderMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/Interfaces/ICrashReportProviderMenuService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/Interfaces/IDefaultCrashReportProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Services/Interfaces/IDefaultCrashReportProviderService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/TemplateSelectors/CrashDetailsTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/TemplateSelectors/CrashDetailsTemplateSelector.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Themes/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Themes/Styles.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/AdditionalInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/AdditionalInfoViewModel.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/CrashDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/CrashDetailsViewModel.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/CrashReportProvidersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/CrashReportProvidersViewModel.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/CrashReportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/CrashReportViewModel.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/ExceptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/ExceptionViewModel.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/LoadedModulesInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/LoadedModulesInfoViewModel.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/SystemInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/ViewModels/SystemInfoViewModel.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/AdditionalInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/AdditionalInfoView.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/AdditionalInfoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/AdditionalInfoView.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashDetailsView.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashDetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashDetailsView.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashReportProvidersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashReportProvidersView.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashReportProvidersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashReportProvidersView.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashReportWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashReportWindow.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashReportWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/CrashReportWindow.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/ExceptionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/ExceptionView.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/ExceptionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/ExceptionView.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/LoadedModulesInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/LoadedModulesInfoView.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/LoadedModulesInfoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/LoadedModulesInfoView.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/SystemInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/SystemInfoView.xaml -------------------------------------------------------------------------------- /src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/SystemInfoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.Xaml/Orc.CrashReporting.Xaml.Shared/Views/SystemInfoView.xaml.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.sln -------------------------------------------------------------------------------- /src/Orc.CrashReporting.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting.sln.DotSettings -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET40/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET40/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET40/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET40/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET40/Orc.CrashReporting.NET40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET40/Orc.CrashReporting.NET40.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET40/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET40/app.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET40/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET40/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET45/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET45/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET45/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET45/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET45/Orc.CrashReporting.NET45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET45/Orc.CrashReporting.NET45.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET45/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET45/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET46/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET46/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET46/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET46/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET46/Orc.CrashReporting.NET46.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET46/Orc.CrashReporting.NET46.csproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.NET46/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.NET46/packages.config -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Constants.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Context/CrashReportingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Context/CrashReportingContext.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Context/Interfaces/ICrashReportingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Context/Interfaces/ICrashReportingContext.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Extensions/ProcessModuleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Extensions/ProcessModuleExtensions.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Extensions/SystemInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Extensions/SystemInfoExtensions.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Factories/CrashReportFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Factories/CrashReportFactory.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Factories/Interfaces/ICrashReportFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Factories/Interfaces/ICrashReportFactory.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Handlers/UnhandledExceptionWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Handlers/UnhandledExceptionWatcher.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Initializers/CrashReporterInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Initializers/CrashReporterInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/AdditionalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/AdditionalInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/Base/CrashInfoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/Base/CrashInfoBase.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/CrashReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/CrashReport.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/ExceptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/ExceptionInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/Interfaces/ICrashInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/Interfaces/ICrashInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/LoadedModulesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/LoadedModulesInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/SystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Models/SystemInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Orc.CrashReporting.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Orc.CrashReporting.Shared.projitems -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Orc.CrashReporting.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Orc.CrashReporting.Shared.shproj -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.NET40.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.NET40.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.NET45.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.NET45.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.NET46.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.NET46.Designer.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.es.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.fr.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.nl.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Properties/Resources.ru.resx -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Providers/Interfaces/ICrashReportProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Providers/Interfaces/ICrashReportProvider.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/CrashInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/CrashInfoService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/CrashReportProvidersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/CrashReportProvidersService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/ExceptionHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/ExceptionHandlerService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/Interfaces/ICrashInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/Interfaces/ICrashInfoService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/Interfaces/ICrashReportProvidersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/Interfaces/ICrashReportProvidersService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/Interfaces/ICrashReporterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/Interfaces/ICrashReporterService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/Interfaces/IExceptionHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/Services/Interfaces/IExceptionHandlerService.cs -------------------------------------------------------------------------------- /src/Orc.CrashReporting/Orc.CrashReporting.Shared/SupportPackage/Providers/CrashReportSupportPackageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/Orc.CrashReporting/Orc.CrashReporting.Shared/SupportPackage/Providers/CrashReportSupportPackageProvider.cs -------------------------------------------------------------------------------- /src/SolutionAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/SolutionAssemblyInfo.cs -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/src/nuget.config -------------------------------------------------------------------------------- /tools/NuGet/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildGums/Orc.CrashReporting/HEAD/tools/NuGet/NuGet.exe --------------------------------------------------------------------------------