├── #assets ├── Commands.VS2010.pdn ├── Commands.VS2012.pdn └── screenshots │ ├── Exceptions.Set.png │ ├── VS2012.Menu.png │ ├── VS2012.Toolbar.NoToolTip.png │ ├── VS2012.Toolbar.png │ └── VS2013.Options.png ├── #testing ├── ExceptionTest.LibraryOnly │ ├── ExceptionTest.Library.csproj │ ├── ExceptionTest.LibraryOnly.sln │ └── Properties │ │ └── AssemblyInfo.cs ├── ExceptionTest.VS2013 │ ├── ExceptionTest.sln │ └── ExceptionTest │ │ ├── ExceptionTest.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── ExceptionTest │ ├── ExceptionTest.sln │ └── ExceptionTest │ ├── ExceptionTest.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── .gitignore ├── ExceptionBreaker.OptionsUITester ├── App.config ├── App.xaml ├── App.xaml.cs ├── ExceptionBreaker.OptionsUITester.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ExceptionBreaker.Tests.Unit ├── CollectionSyncExtensionsTests.cs ├── ExceptionBreaker.Tests.Unit.csproj ├── MoqExtensions.cs ├── OptionsPageDataTests.cs ├── PatternCollectionViewModelTests.cs ├── PatternViewModelTests.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── ExceptionBreaker.sln ├── ExceptionBreaker.sln.DotSettings ├── ExceptionBreaker ├── ComImports │ ├── BREAKPOINT_EDIT_OPERATION.cs │ ├── BREAKPOINT_FILTER_TYPE.cs │ ├── DEBUGGER_OPTIONS.cs │ ├── DEBUGGER_STRING_OPTIONS.cs │ ├── DataTipIdentity.cs │ ├── EBreakpointType.cs │ ├── IBreakpoint.cs │ ├── IBreakpointEvents.cs │ ├── IBreakpointManager.cs │ ├── IDataTipEvents.cs │ ├── IDataTipManager.cs │ ├── IDebuggerInternal10.cs │ ├── IDebuggerInternal11.cs │ ├── IDebuggerInternalEvents.cs │ ├── IMAGEINFO_TYPE.cs │ └── ReadMe.txt ├── CommandIDs.cs ├── ExceptionBreaker.2010.vsct ├── ExceptionBreaker.2012.vsct ├── ExceptionBreaker.csproj ├── ExceptionBreaker.vsct ├── ExceptionBreakerPackage.cs ├── GlobalSuppressions.cs ├── Guids.cs ├── Implementation │ ├── CommandController.cs │ ├── DebugSessionEventSink.cs │ ├── DebugSessionManager.cs │ ├── ExceptionBreakManager.cs │ ├── ExceptionBreakState.cs │ ├── ExtensionLogger.cs │ ├── IDiagnosticLogger.cs │ ├── IExceptionListProvider.cs │ ├── VSInteropHelper.cs │ └── VersionSpecific │ │ ├── DebuggerInternal10Adapter.cs │ │ ├── DebuggerInternal11Adapter.cs │ │ ├── IDebuggerInternalAdapter.cs │ │ └── VersionSpecificAdapterFactory.cs ├── Options │ ├── ExceptionViewModel.cs │ ├── FailSafeJsonTypeConverter.cs │ ├── ImprovedComponentModel │ │ ├── CustomPropertyDescriptor.cs │ │ ├── ImprovedTypeDescriptor.cs │ │ ├── ImprovedTypeDescriptorProvider.cs │ │ └── PropertyDescriptorAttribute.cs │ ├── OptionsPageData.cs │ ├── OptionsPageView.xaml │ ├── OptionsPageView.xaml.cs │ ├── OptionsViewModel.cs │ ├── PatternCollectionViewModel.cs │ ├── PatternData.cs │ ├── PatternViewModel.cs │ ├── ProvideOptionPageInExistingCategoryAttribute.cs │ ├── RegexValidationRule.cs │ └── Support │ │ ├── BindingDelay.cs │ │ ├── BindingDelayExtension.cs │ │ ├── CollectionSyncExtensions.cs │ │ ├── IObservableResult.cs │ │ ├── ObservableCollectionExtensions.cs │ │ ├── ObservableValue.cs │ │ ├── ProperListPropertyDescriptor.cs │ │ └── WpfDialogPageIntegration.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Add.png │ ├── Commands.VS2010.png │ ├── Commands.VS2012.png │ ├── Delete.png │ └── Package.ico ├── Screenshot.png ├── VSPackage.resx ├── packages.config └── source.extension.vsixmanifest ├── nuget.config └── readme.md /#assets/Commands.VS2010.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#assets/Commands.VS2010.pdn -------------------------------------------------------------------------------- /#assets/Commands.VS2012.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#assets/Commands.VS2012.pdn -------------------------------------------------------------------------------- /#assets/screenshots/Exceptions.Set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#assets/screenshots/Exceptions.Set.png -------------------------------------------------------------------------------- /#assets/screenshots/VS2012.Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#assets/screenshots/VS2012.Menu.png -------------------------------------------------------------------------------- /#assets/screenshots/VS2012.Toolbar.NoToolTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#assets/screenshots/VS2012.Toolbar.NoToolTip.png -------------------------------------------------------------------------------- /#assets/screenshots/VS2012.Toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#assets/screenshots/VS2012.Toolbar.png -------------------------------------------------------------------------------- /#assets/screenshots/VS2013.Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#assets/screenshots/VS2013.Options.png -------------------------------------------------------------------------------- /#testing/ExceptionTest.LibraryOnly/ExceptionTest.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest.LibraryOnly/ExceptionTest.Library.csproj -------------------------------------------------------------------------------- /#testing/ExceptionTest.LibraryOnly/ExceptionTest.LibraryOnly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest.LibraryOnly/ExceptionTest.LibraryOnly.sln -------------------------------------------------------------------------------- /#testing/ExceptionTest.LibraryOnly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest.LibraryOnly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /#testing/ExceptionTest.VS2013/ExceptionTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest.VS2013/ExceptionTest.sln -------------------------------------------------------------------------------- /#testing/ExceptionTest.VS2013/ExceptionTest/ExceptionTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest.VS2013/ExceptionTest/ExceptionTest.csproj -------------------------------------------------------------------------------- /#testing/ExceptionTest.VS2013/ExceptionTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest.VS2013/ExceptionTest/Program.cs -------------------------------------------------------------------------------- /#testing/ExceptionTest.VS2013/ExceptionTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest.VS2013/ExceptionTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /#testing/ExceptionTest/ExceptionTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest/ExceptionTest.sln -------------------------------------------------------------------------------- /#testing/ExceptionTest/ExceptionTest/ExceptionTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest/ExceptionTest/ExceptionTest.csproj -------------------------------------------------------------------------------- /#testing/ExceptionTest/ExceptionTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest/ExceptionTest/Program.cs -------------------------------------------------------------------------------- /#testing/ExceptionTest/ExceptionTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/#testing/ExceptionTest/ExceptionTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/.gitignore -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/App.config -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/App.xaml -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/App.xaml.cs -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/ExceptionBreaker.OptionsUITester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/ExceptionBreaker.OptionsUITester.csproj -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/MainWindow.xaml -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/Properties/Resources.resx -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ExceptionBreaker.OptionsUITester/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.OptionsUITester/Properties/Settings.settings -------------------------------------------------------------------------------- /ExceptionBreaker.Tests.Unit/CollectionSyncExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.Tests.Unit/CollectionSyncExtensionsTests.cs -------------------------------------------------------------------------------- /ExceptionBreaker.Tests.Unit/ExceptionBreaker.Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.Tests.Unit/ExceptionBreaker.Tests.Unit.csproj -------------------------------------------------------------------------------- /ExceptionBreaker.Tests.Unit/MoqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.Tests.Unit/MoqExtensions.cs -------------------------------------------------------------------------------- /ExceptionBreaker.Tests.Unit/OptionsPageDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.Tests.Unit/OptionsPageDataTests.cs -------------------------------------------------------------------------------- /ExceptionBreaker.Tests.Unit/PatternCollectionViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.Tests.Unit/PatternCollectionViewModelTests.cs -------------------------------------------------------------------------------- /ExceptionBreaker.Tests.Unit/PatternViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.Tests.Unit/PatternViewModelTests.cs -------------------------------------------------------------------------------- /ExceptionBreaker.Tests.Unit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.Tests.Unit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExceptionBreaker.Tests.Unit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.Tests.Unit/packages.config -------------------------------------------------------------------------------- /ExceptionBreaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.sln -------------------------------------------------------------------------------- /ExceptionBreaker.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker.sln.DotSettings -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/BREAKPOINT_EDIT_OPERATION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/BREAKPOINT_EDIT_OPERATION.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/BREAKPOINT_FILTER_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/BREAKPOINT_FILTER_TYPE.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/DEBUGGER_OPTIONS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/DEBUGGER_OPTIONS.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/DEBUGGER_STRING_OPTIONS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/DEBUGGER_STRING_OPTIONS.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/DataTipIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/DataTipIdentity.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/EBreakpointType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/EBreakpointType.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IBreakpoint.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IBreakpointEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IBreakpointEvents.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IBreakpointManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IBreakpointManager.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IDataTipEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IDataTipEvents.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IDataTipManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IDataTipManager.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IDebuggerInternal10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IDebuggerInternal10.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IDebuggerInternal11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IDebuggerInternal11.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IDebuggerInternalEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IDebuggerInternalEvents.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/IMAGEINFO_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/IMAGEINFO_TYPE.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ComImports/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ComImports/ReadMe.txt -------------------------------------------------------------------------------- /ExceptionBreaker/CommandIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/CommandIDs.cs -------------------------------------------------------------------------------- /ExceptionBreaker/ExceptionBreaker.2010.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ExceptionBreaker.2010.vsct -------------------------------------------------------------------------------- /ExceptionBreaker/ExceptionBreaker.2012.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ExceptionBreaker.2012.vsct -------------------------------------------------------------------------------- /ExceptionBreaker/ExceptionBreaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ExceptionBreaker.csproj -------------------------------------------------------------------------------- /ExceptionBreaker/ExceptionBreaker.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ExceptionBreaker.vsct -------------------------------------------------------------------------------- /ExceptionBreaker/ExceptionBreakerPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/ExceptionBreakerPackage.cs -------------------------------------------------------------------------------- /ExceptionBreaker/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/GlobalSuppressions.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Guids.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/CommandController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/CommandController.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/DebugSessionEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/DebugSessionEventSink.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/DebugSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/DebugSessionManager.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/ExceptionBreakManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/ExceptionBreakManager.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/ExceptionBreakState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/ExceptionBreakState.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/ExtensionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/ExtensionLogger.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/IDiagnosticLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/IDiagnosticLogger.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/IExceptionListProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/IExceptionListProvider.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/VSInteropHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/VSInteropHelper.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/VersionSpecific/DebuggerInternal10Adapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/VersionSpecific/DebuggerInternal10Adapter.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/VersionSpecific/DebuggerInternal11Adapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/VersionSpecific/DebuggerInternal11Adapter.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/VersionSpecific/IDebuggerInternalAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/VersionSpecific/IDebuggerInternalAdapter.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Implementation/VersionSpecific/VersionSpecificAdapterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Implementation/VersionSpecific/VersionSpecificAdapterFactory.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/ExceptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/ExceptionViewModel.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/FailSafeJsonTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/FailSafeJsonTypeConverter.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/ImprovedComponentModel/CustomPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/ImprovedComponentModel/CustomPropertyDescriptor.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/ImprovedComponentModel/ImprovedTypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/ImprovedComponentModel/ImprovedTypeDescriptor.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/ImprovedComponentModel/ImprovedTypeDescriptorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/ImprovedComponentModel/ImprovedTypeDescriptorProvider.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/ImprovedComponentModel/PropertyDescriptorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/ImprovedComponentModel/PropertyDescriptorAttribute.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/OptionsPageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/OptionsPageData.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/OptionsPageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/OptionsPageView.xaml -------------------------------------------------------------------------------- /ExceptionBreaker/Options/OptionsPageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/OptionsPageView.xaml.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/OptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/OptionsViewModel.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/PatternCollectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/PatternCollectionViewModel.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/PatternData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/PatternData.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/PatternViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/PatternViewModel.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/ProvideOptionPageInExistingCategoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/ProvideOptionPageInExistingCategoryAttribute.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/RegexValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/RegexValidationRule.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/Support/BindingDelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/Support/BindingDelay.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/Support/BindingDelayExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/Support/BindingDelayExtension.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/Support/CollectionSyncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/Support/CollectionSyncExtensions.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/Support/IObservableResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/Support/IObservableResult.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/Support/ObservableCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/Support/ObservableCollectionExtensions.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/Support/ObservableValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/Support/ObservableValue.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/Support/ProperListPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/Support/ProperListPropertyDescriptor.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Options/Support/WpfDialogPageIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Options/Support/WpfDialogPageIntegration.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExceptionBreaker/Resources/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Resources/Add.png -------------------------------------------------------------------------------- /ExceptionBreaker/Resources/Commands.VS2010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Resources/Commands.VS2010.png -------------------------------------------------------------------------------- /ExceptionBreaker/Resources/Commands.VS2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Resources/Commands.VS2012.png -------------------------------------------------------------------------------- /ExceptionBreaker/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Resources/Delete.png -------------------------------------------------------------------------------- /ExceptionBreaker/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Resources/Package.ico -------------------------------------------------------------------------------- /ExceptionBreaker/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/Screenshot.png -------------------------------------------------------------------------------- /ExceptionBreaker/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/VSPackage.resx -------------------------------------------------------------------------------- /ExceptionBreaker/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/packages.config -------------------------------------------------------------------------------- /ExceptionBreaker/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/ExceptionBreaker/source.extension.vsixmanifest -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/nuget.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashmind/ExceptionBreaker/HEAD/readme.md --------------------------------------------------------------------------------