├── .gitattributes ├── .gitignore ├── .hgignore ├── Build.cmd ├── CREDITS.txt ├── LICENCE.txt ├── NextVersion.txt ├── Office2007_VSTOContribSamples ├── ExcelAddIn1 │ ├── DocumentView.xml │ ├── DocumentViewModel.cs │ ├── ExcelAddIn1.csproj │ ├── ExcelAddIn1_TemporaryKey.pfx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ └── 1359546404296.png │ ├── ThisAddIn.Designer.cs │ ├── ThisAddIn.Designer.xml │ ├── ThisAddIn.cs │ └── packages.config ├── Office2007_VSTOContribSamples.sln ├── OutlookAddIn1 │ ├── OutlookAddIn1.csproj │ ├── OutlookAddIn1_TemporaryKey.pfx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ThisAddIn.Designer.cs │ ├── ThisAddIn.Designer.xml │ ├── ThisAddIn.cs │ └── packages.config ├── PowerPointAddIn1 │ ├── PowerPointAddIn1.csproj │ ├── PowerPointAddIn1_TemporaryKey.pfx │ ├── PresentationViewModel.cs │ ├── PresentationViewModel.xml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ThisAddIn.Designer.cs │ ├── ThisAddIn.Designer.xml │ ├── ThisAddIn.cs │ └── packages.config └── WordAddIn1 │ ├── OfficeContexts │ ├── DocumentView.xml │ └── DocumentViewModel.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Services │ ├── IWikipediaService.cs │ ├── Query.cs │ ├── SearchInfo.cs │ ├── SearchResult.cs │ ├── SearchResults.cs │ └── WikipediaService.cs │ ├── ThisAddIn.Designer.cs │ ├── ThisAddIn.Designer.xml │ ├── ThisAddIn.cs │ ├── WordAddIn1.csproj │ ├── WordAddIn1_TemporaryKey.pfx │ ├── WpfControls │ ├── WikipediaResultsView.xaml │ ├── WikipediaResultsView.xaml.cs │ └── WikipediaResultsViewModel.cs │ └── packages.config ├── Office2010_VSTOContribSamples ├── ExcelAddIn1 │ ├── DocumentView.xml │ ├── DocumentViewModel.cs │ ├── ExcelAddIn1.csproj │ ├── ExcelAddIn1_TemporaryKey.pfx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ └── 1359546404296.png │ ├── ThisAddIn.Designer.cs │ ├── ThisAddIn.Designer.xml │ ├── ThisAddIn.cs │ └── packages.config ├── Office2010_VSTOContribSamples.sln ├── OutlookAddIn1 │ ├── OutlookAddIn1.csproj │ ├── OutlookAddIn1_TemporaryKey.pfx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ThisAddIn.Designer.cs │ ├── ThisAddIn.Designer.xml │ ├── ThisAddIn.cs │ └── packages.config ├── PowerPointAddIn1 │ ├── PowerPointAddIn1.csproj │ ├── PowerPointAddIn1_TemporaryKey.pfx │ ├── PresentationViewModel.cs │ ├── PresentationViewModel.xml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ThisAddIn.Designer.cs │ ├── ThisAddIn.Designer.xml │ ├── ThisAddIn.cs │ └── packages.config └── WordAddIn1 │ ├── OfficeContexts │ ├── DocumentView.xml │ └── DocumentViewModel.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Services │ ├── IWikipediaService.cs │ ├── Query.cs │ ├── SearchInfo.cs │ ├── SearchResult.cs │ ├── SearchResults.cs │ └── WikipediaService.cs │ ├── ThisAddIn.Designer.cs │ ├── ThisAddIn.Designer.xml │ ├── ThisAddIn.cs │ ├── WordAddIn1.csproj │ ├── WordAddIn1_TemporaryKey.pfx │ ├── WpfControls │ ├── WikipediaResultsView.xaml │ ├── WikipediaResultsView.xaml.cs │ └── WikipediaResultsViewModel.cs │ └── packages.config ├── README.md ├── Resources └── Logo.png ├── VSTO Contrib Office Application.proj ├── VSTOContrib.proj ├── lib └── xUnit.net │ ├── HTML.xslt │ ├── NUnitXml.xslt │ ├── xunit.console.clr4.exe │ ├── xunit.console.clr4.exe.config │ ├── xunit.console.clr4.x86.exe │ ├── xunit.console.clr4.x86.exe.config │ ├── xunit.console.exe │ ├── xunit.console.exe.config │ ├── xunit.console.x86.exe │ ├── xunit.console.x86.exe.config │ ├── xunit.dll │ ├── xunit.dll.tdnet │ ├── xunit.extensions.dll │ ├── xunit.extensions.xml │ ├── xunit.gui.clr4.exe │ ├── xunit.gui.clr4.x86.exe │ ├── xunit.gui.exe │ ├── xunit.gui.x86.exe │ ├── xunit.installer.exe │ ├── xunit.runner.msbuild.dll │ ├── xunit.runner.tdnet.dll │ ├── xunit.runner.utility.dll │ ├── xunit.runner.utility.xml │ └── xunit.xml ├── src ├── .nuget │ └── NuGet.exe ├── Add-inUninstaller │ ├── Add-inUninstaller.csproj │ ├── Add-inUninstaller.ncrunchproject │ ├── Add-inUninstaller.v2.ncrunchproject │ ├── Addin.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── DesignData │ │ └── MainWindow.xaml │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowViewModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config ├── Documentation │ └── CreateProject.PNG ├── Information │ └── SolutionInfo.cs ├── Samples │ ├── Excel │ │ └── QuoteGeneratorAddin │ │ │ ├── 1359546404296.png │ │ │ ├── AddinModule.cs │ │ │ ├── OfficeContexts │ │ │ ├── IQuotesService.cs │ │ │ ├── QuotesService.cs │ │ │ ├── SpreadSheetView.xml │ │ │ └── SpreadSheetViewModel.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── QuoteGeneratorAddin.csproj │ │ │ ├── QuoteGeneratorAddin.ncrunchproject │ │ │ ├── QuoteGeneratorAddin.v2.ncrunchproject │ │ │ ├── QuoteGeneratorAddin_TemporaryKey.pfx │ │ │ ├── ThisAddIn.Designer.cs │ │ │ ├── ThisAddIn.Designer.xml │ │ │ ├── ThisAddIn.cs │ │ │ └── packages.config │ ├── Outlook │ │ ├── GitHubForOutlook.Tests │ │ │ ├── GitHubForOutlook.Tests.csproj │ │ │ ├── GitHubForOutlook.Tests.ncrunchproject │ │ │ ├── GitHubForOutlook.Tests.v2.ncrunchproject │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── GitHubForOutlookAddin │ │ │ ├── AddinModule.cs │ │ │ ├── Features │ │ │ ├── CreateIssue │ │ │ │ ├── CreateIssueControl.xaml │ │ │ │ ├── CreateIssueControl.xaml.cs │ │ │ │ ├── CreateIssueViewModel.cs │ │ │ │ ├── CreateIssuesApi.cs │ │ │ │ ├── ICreateIssueViewModel.cs │ │ │ │ ├── MyReposApi.cs │ │ │ │ ├── NewIssue.cs │ │ │ │ └── RepositoryModel.cs │ │ │ ├── ITaskPaneContent.cs │ │ │ ├── ITaskPaneContentHost.cs │ │ │ ├── Settings │ │ │ │ ├── GitHubSettings.cs │ │ │ │ ├── IGitHubSettings.cs │ │ │ │ ├── ISettingsViewModel.cs │ │ │ │ ├── SettingsControl.xaml │ │ │ │ ├── SettingsControl.xaml.cs │ │ │ │ └── SettingsViewModel.cs │ │ │ ├── TaskPaneContentHost.xaml │ │ │ └── TaskPaneContentHost.xaml.cs │ │ │ ├── FodyWeavers.xml │ │ │ ├── GitHubForOutlookAddin.csproj │ │ │ ├── GitHubForOutlookAddin.ncrunchproject │ │ │ ├── GitHubForOutlookAddin.v2.ncrunchproject │ │ │ ├── GitHubForOutlookAddin_TemporaryKey.pfx │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ ├── gtfo.png │ │ │ └── gtfo32x32.png │ │ │ ├── Ribbons │ │ │ ├── GithubExplorerRibbon.cs │ │ │ └── GithubExplorerRibbon.xml │ │ │ ├── ThisAddIn.Designer.cs │ │ │ ├── ThisAddIn.Designer.xml │ │ │ ├── ThisAddIn.cs │ │ │ ├── app.config │ │ │ └── packages.config │ ├── PowerPoint │ │ └── AddTextAddin │ │ │ ├── AddTextAddin.csproj │ │ │ ├── AddTextAddin.ncrunchproject │ │ │ ├── AddTextAddin.v2.ncrunchproject │ │ │ ├── AddTextAddin_TemporaryKey.pfx │ │ │ ├── PresentationViewModel.cs │ │ │ ├── PresentationViewModel.xml │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── ThisAddIn.Designer.cs │ │ │ ├── ThisAddIn.Designer.xml │ │ │ └── ThisAddIn.cs │ └── Word │ │ ├── WikipediaWordAddin.UnitTests │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── WikipediaWordAddin.UnitTests.csproj │ │ ├── WikipediaWordAddin.UnitTests.ncrunchproject │ │ ├── WikipediaWordAddin.UnitTests.v2.ncrunchproject │ │ ├── app.config │ │ └── packages.config │ │ └── WikipediaWordAddin │ │ ├── AddinModule.cs │ │ ├── OfficeContexts │ │ ├── DocumentView.xml │ │ └── DocumentViewModel.cs │ │ ├── Properties │ │ ├── Annotations.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Services │ │ ├── IWikipediaService.cs │ │ ├── Query.cs │ │ ├── SearchInfo.cs │ │ ├── SearchResult.cs │ │ ├── SearchResults.cs │ │ └── WikipediaService.cs │ │ ├── ThisAddIn.Designer.cs │ │ ├── ThisAddIn.Designer.xml │ │ ├── ThisAddIn.cs │ │ ├── WikipediaWordAddin.csproj │ │ ├── WikipediaWordAddin.ncrunchproject │ │ ├── WikipediaWordAddin.v2.ncrunchproject │ │ ├── WordAddIn1.ncrunchproject │ │ ├── WordAddIn1_TemporaryKey.pfx │ │ ├── WpfControls │ │ ├── WikipediaResultsView.xaml │ │ ├── WikipediaResultsView.xaml.cs │ │ └── WikipediaResultsViewModel.cs │ │ └── packages.config ├── TestDoubles │ ├── Excel.TestDoubles │ │ ├── ApplicationTestDouble.cs │ │ ├── Excel.TestDoubles.csproj │ │ ├── Excel.TestDoubles.v2.ncrunchproject │ │ ├── Excel2013Facade.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── WindowTestDouble.cs │ │ ├── WindowsTestDouble.cs │ │ ├── WorkbookTestDouble.cs │ │ └── WorkbooksTestDouble.cs │ ├── Office.TestDoubles │ │ ├── Office.TestDoubles.csproj │ │ ├── Office.TestDoubles.v2.ncrunchproject │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── RibbonUITestDouble.cs │ ├── TestDoubleTests │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestDoubleTests.csproj │ │ ├── TestDoubleTests.v2.ncrunchproject │ │ ├── WordTests.cs │ │ └── packages.config │ └── Word.TestDoubles │ │ ├── ApplicationTestDouble.cs │ │ ├── DocumentTestDouble.cs │ │ ├── DocumentsTestDouble.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── WindowTestDouble.cs │ │ ├── WindowsTestDouble.cs │ │ ├── Word.TestDoubles.csproj │ │ ├── Word.TestDoubles.v2.ncrunchproject │ │ └── Word2013Facade.cs ├── TestProjects │ ├── VSTOContrib.Core.Tests │ │ ├── ComCleanupEnumeratorFixture.cs │ │ ├── Internal │ │ │ └── ViewModelRibbonTypesLookupProviderFixture.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RibbonFactory │ │ │ ├── Internal │ │ │ │ ├── CustomTaskPaneDouble.cs │ │ │ │ └── OneToManyCustomTaskPaneAdapterTests.cs │ │ │ ├── TestAddin │ │ │ │ ├── AddInBaseFactory.cs │ │ │ │ ├── CustomTaskPaneCollectionDouble.cs │ │ │ │ ├── Globals.cs │ │ │ │ ├── TestAddInBase.cs │ │ │ │ ├── TestAddin.cs │ │ │ │ └── TestFactory.cs │ │ │ ├── TestContextProvider.cs │ │ │ ├── TestStubs │ │ │ │ ├── TestRibbon.xml │ │ │ │ ├── TestRibbonFactory.cs │ │ │ │ ├── TestRibbonTypes.cs │ │ │ │ ├── TestRibbonViewModel.cs │ │ │ │ ├── TestRibbonViewModel2.cs │ │ │ │ ├── TestRibbonViewModel2.xml │ │ │ │ └── TestStruct.cs │ │ │ ├── TestView.cs │ │ │ ├── TestViewModelFactory.cs │ │ │ ├── TestWindowContext.cs │ │ │ ├── the_ribbon_factory.cs │ │ │ ├── the_ribbon_viewmodel_helper.cs │ │ │ └── the_view_model_resolver.cs │ │ ├── VSTOContrib.Core.Tests.csproj │ │ ├── VSTOContrib.Core.Tests.ncrunchproject │ │ ├── VSTOContrib.Core.Tests.v2.ncrunchproject │ │ └── packages.config │ ├── VSTOContrib.Excel.Tests │ │ ├── ExcelScenario.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RibbonControlDouble.cs │ │ ├── RibbonFactory │ │ │ └── Views │ │ │ │ ├── TestRibbon.xml │ │ │ │ └── TestRibbonViewModel.cs │ │ ├── VSTOContrib.Excel.Tests.csproj │ │ ├── VSTOContrib.Excel.Tests.ncrunchproject │ │ ├── VSTOContrib.Excel.Tests.v2.ncrunchproject │ │ └── packages.config │ ├── VSTOContrib.Outlook.Tests │ │ ├── GenericSyncServiceDownloadTests.cs │ │ ├── GenericSyncServiceTwoWayTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RibbonFactoryTests.cs │ │ ├── TestRibbon.xml │ │ ├── VSTOContrib.Outlook.Tests.csproj │ │ ├── VSTOContrib.Outlook.Tests.ncrunchproject │ │ ├── VSTOContrib.Outlook.Tests.v2.ncrunchproject │ │ ├── ViewModelResolverExplorerTests.cs │ │ └── packages.config │ ├── VSTOContrib.PowerPoint.Tests │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── VSTOContrib.PowerPoint.Tests.csproj │ │ ├── VSTOContrib.PowerPoint.Tests.ncrunchproject │ │ ├── VSTOContrib.PowerPoint.Tests.v2.ncrunchproject │ │ └── packages.config │ └── VSTOContrib.Word.Tests │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RibbonFactory │ │ └── Views │ │ │ ├── TestRibbon.xml │ │ │ └── TestRibbonViewModel.cs │ │ ├── VSTOContrib.Word.Tests.csproj │ │ ├── VSTOContrib.Word.Tests.ncrunchproject │ │ ├── VSTOContrib.Word.Tests.v2.ncrunchproject │ │ ├── WordScenarios.cs │ │ └── packages.config ├── VSTOContrib.Autofac │ ├── AutofacViewModelFactory.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Readme.txt │ ├── RegistrationExtensions.cs │ ├── VSTOContrib.Autofac.csproj │ ├── VSTOContrib.Autofac.ncrunchproject │ ├── VSTOContrib.Autofac.nuspec │ ├── VSTOContrib.Autofac.v2.ncrunchproject │ └── packages.config ├── VSTOContrib.Core │ ├── ClickOnceUpdater.cs │ ├── DefaultViewModelFactory.cs │ ├── EnumExtensions.cs │ ├── Extensions │ │ ├── ComCleanupEnumerator.cs │ │ ├── ComCleanupExtensions.cs │ │ ├── ComCleanupWrapper.cs │ │ ├── ComObjectWrapper.cs │ │ ├── CommonExtensions.cs │ │ └── RegistryExtensions.cs │ ├── Helpers │ │ └── PictureConverter.cs │ ├── IViewModelFactory.cs │ ├── LogWriter.cs │ ├── NotifyPropertyChanged.cs │ ├── OfficeViewModelBase.cs │ ├── OfficeWin32Window.cs │ ├── Properties │ │ ├── Annotations.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── RibbonFactory │ │ ├── DefaultViewLocationStrategy.cs │ │ ├── HideCustomTaskPanesForContextEventArgs.cs │ │ ├── ICustomTaskPaneWrapper.cs │ │ ├── IErrorHandler.cs │ │ ├── Interfaces │ │ │ ├── ICustomTaskPaneRegister.cs │ │ │ ├── IRegisterCustomTaskPane.cs │ │ │ ├── IRibbonFactory.cs │ │ │ ├── IRibbonFactoryController.cs │ │ │ ├── IRibbonViewModel.cs │ │ │ ├── IViewContextProvider.cs │ │ │ ├── IViewLocationStrategy.cs │ │ │ ├── IViewModelResolver.cs │ │ │ └── IViewProvider.cs │ │ ├── Internal │ │ │ ├── CallbackTarget.cs │ │ │ ├── ControlCallbackLookup.cs │ │ │ ├── CustomTaskPaneRegister.cs │ │ │ ├── LoggingExtensions.cs │ │ │ ├── NullContext.cs │ │ │ ├── OneToManyCustomTaskPaneAdapter.cs │ │ │ ├── TaskPaneRegistrationInfo.cs │ │ │ ├── ViewModelKey.cs │ │ │ ├── ViewModelResolver.cs │ │ │ └── ViewModelRibbonTypesLookupProvider.cs │ │ ├── NewViewEventArgs.cs │ │ ├── RibbonFactory.cs │ │ ├── RibbonFactoryController.cs │ │ ├── RibbonViewModelAttribute.cs │ │ ├── RibbonXmlRewriter.cs │ │ ├── ViewClosedEventArgs.cs │ │ ├── ViewLocationStrategyBase.cs │ │ ├── ViewNotFoundException.cs │ │ └── VstoContribContext.cs │ ├── UpdateResult.cs │ ├── VSTOContrib.Core.csproj │ ├── VSTOContrib.Core.csproj.user │ ├── VSTOContrib.Core.ncrunchproject │ ├── VSTOContrib.Core.v2.ncrunchproject │ ├── VstoClickOnceUpdater.cs │ ├── VstoContribLog.cs │ ├── VstoContribLogLevel.cs │ └── Wpf │ │ ├── DelegateCommand.cs │ │ ├── WpfPanelHost.Designer.cs │ │ ├── WpfPanelHost.cs │ │ └── WpfPanelHost.resx ├── VSTOContrib.Excel │ ├── CloseRequestInfo.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RibbonFactory │ │ ├── ExcelRibbonFactory.cs │ │ ├── ExcelRibbonType.cs │ │ ├── ExcelRibbonViewModel.cs │ │ ├── ExcelRibbonViewModelAttribute.cs │ │ ├── ExcelViewContextProvider.cs │ │ └── ExcelViewProvider.cs │ ├── VSTOContrib.Excel.csproj │ ├── VSTOContrib.Excel.csproj.user │ ├── VSTOContrib.Excel.ncrunchproject │ ├── VSTOContrib.Excel.v2.ncrunchproject │ ├── WorkbookClosedMonitor.cs │ └── WorksheetClosedEventArgs.cs ├── VSTOContrib.Outlook │ ├── CancelEventArgs.cs │ ├── ComComponentCategoriesManager.cs │ ├── EventArgs.cs │ ├── ExplorerEventArgs.cs │ ├── ExplorerWrapper.cs │ ├── FolderHomePage.cs │ ├── ICatRegister.cs │ ├── InspectorClosedEventArgs.cs │ ├── InspectorWrapper.cs │ ├── ItemAdapter.cs │ ├── OutlookFolderMonitor.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── RibbonFactory │ │ ├── InspectorToRibbonTypeConverter.cs │ │ ├── OutlookRibbonFactory.cs │ │ ├── OutlookRibbonType.cs │ │ ├── OutlookRibbonViewModelAttribute.cs │ │ ├── OutlookViewContextProvider.cs │ │ └── OutlookViewProvider.cs │ ├── Services │ │ ├── Conficts │ │ │ ├── ConflictResolution.cs │ │ │ ├── IConflictResolver.cs │ │ │ ├── LocalWinsResolver.cs │ │ │ └── RemoteWinsResolver.cs │ │ ├── DeletedEventsHelper.cs │ │ ├── GenericSynchronisationService.cs │ │ ├── ISyncSettings.cs │ │ ├── ISynchronisationProvider.cs │ │ ├── ISynchronisationService.cs │ │ ├── SyncDirection.cs │ │ ├── SynchronisationCompleteEventArgs.cs │ │ └── SynchronisationResults.cs │ ├── UserPropertyExtensions.cs │ ├── VSTOContrib.Outlook.csproj │ ├── VSTOContrib.Outlook.csproj.user │ ├── VSTOContrib.Outlook.ncrunchproject │ └── VSTOContrib.Outlook.v2.ncrunchproject ├── VSTOContrib.PowerPoint │ ├── PowerPointRibbonViewModel.cs │ ├── PresentationWrapper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RibbonFactory │ │ ├── PowerPointRibbonFactory.cs │ │ ├── PowerPointRibbonType.cs │ │ ├── PowerPointRibbonViewModelAttribute.cs │ │ ├── PowerPointViewContextProvider.cs │ │ └── PowerPointViewProvider.cs │ ├── VSTOContrib.PowerPoint.csproj │ ├── VSTOContrib.PowerPoint.ncrunchproject │ └── VSTOContrib.PowerPoint.v2.ncrunchproject ├── VSTOContrib.Testing │ ├── OfficeObjectMother.cs │ ├── OfficeObjectMotherNET35.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VSTOContrib.Testing.csproj │ ├── VSTOContrib.Testing.ncrunchproject │ └── packages.config ├── VSTOContrib.Word │ ├── DocumentClosedEventArgs.cs │ ├── DocumentWrapper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RibbonFactory │ │ ├── WordRibbonFactory.cs │ │ ├── WordRibbonType.cs │ │ ├── WordRibbonViewModel.cs │ │ ├── WordRibbonViewModelAttribute.cs │ │ ├── WordViewContextProvider.cs │ │ └── WordViewProvider.cs │ ├── VSTOContrib.Word.csproj │ ├── VSTOContrib.Word.ncrunchproject │ └── VSTOContrib.Word.v2.ncrunchproject ├── VSTOContrib.ncrunchsolution ├── VSTOContrib.sln ├── VSTOContrib.sln.DotSettings └── VSTOContrib.v2.ncrunchsolution └── tools └── GitVersion.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/.hgignore -------------------------------------------------------------------------------- /Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Build.cmd -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /NextVersion.txt: -------------------------------------------------------------------------------- 1 | 1.0.0-beta.1 -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/DocumentView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/DocumentView.xml -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/DocumentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/DocumentViewModel.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/ExcelAddIn1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/ExcelAddIn1.csproj -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/ExcelAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/ExcelAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/Properties/Resources.resx -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/Properties/Settings.settings -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/Resources/1359546404296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/Resources/1359546404296.png -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/ThisAddIn.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/ExcelAddIn1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/ExcelAddIn1/packages.config -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/Office2007_VSTOContribSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/Office2007_VSTOContribSamples.sln -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/OutlookAddIn1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/OutlookAddIn1.csproj -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/OutlookAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/OutlookAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/Properties/Resources.resx -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/Properties/Settings.settings -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/ThisAddIn.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/OutlookAddIn1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/OutlookAddIn1/packages.config -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/PowerPointAddIn1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/PowerPointAddIn1.csproj -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/PowerPointAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/PowerPointAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/PresentationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/PresentationViewModel.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/PresentationViewModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/PresentationViewModel.xml -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/Resources.resx -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/Properties/Settings.settings -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/PowerPointAddIn1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/PowerPointAddIn1/packages.config -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/OfficeContexts/DocumentView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/OfficeContexts/DocumentView.xml -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/OfficeContexts/DocumentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/OfficeContexts/DocumentViewModel.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Properties/Resources.resx -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Properties/Settings.settings -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Services/IWikipediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Services/IWikipediaService.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Services/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Services/Query.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Services/SearchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Services/SearchInfo.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Services/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Services/SearchResult.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Services/SearchResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Services/SearchResults.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/Services/WikipediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/Services/WikipediaService.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/ThisAddIn.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/WordAddIn1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/WordAddIn1.csproj -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/WordAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/WordAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsView.xaml -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsView.xaml.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsViewModel.cs -------------------------------------------------------------------------------- /Office2007_VSTOContribSamples/WordAddIn1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2007_VSTOContribSamples/WordAddIn1/packages.config -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/DocumentView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/DocumentView.xml -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/DocumentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/DocumentViewModel.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/ExcelAddIn1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/ExcelAddIn1.csproj -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/ExcelAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/ExcelAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/Properties/Resources.resx -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/Properties/Settings.settings -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/Resources/1359546404296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/Resources/1359546404296.png -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/ThisAddIn.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/ExcelAddIn1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/ExcelAddIn1/packages.config -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/Office2010_VSTOContribSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/Office2010_VSTOContribSamples.sln -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/OutlookAddIn1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/OutlookAddIn1.csproj -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/OutlookAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/OutlookAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/Properties/Resources.resx -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/Properties/Settings.settings -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/ThisAddIn.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/OutlookAddIn1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/OutlookAddIn1/packages.config -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/PowerPointAddIn1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/PowerPointAddIn1.csproj -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/PowerPointAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/PowerPointAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/PresentationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/PresentationViewModel.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/PresentationViewModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/PresentationViewModel.xml -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/Resources.resx -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/Properties/Settings.settings -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/ThisAddIn.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/PowerPointAddIn1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/PowerPointAddIn1/packages.config -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/OfficeContexts/DocumentView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/OfficeContexts/DocumentView.xml -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/OfficeContexts/DocumentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/OfficeContexts/DocumentViewModel.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Properties/Resources.resx -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Properties/Settings.settings -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Services/IWikipediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Services/IWikipediaService.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Services/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Services/Query.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Services/SearchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Services/SearchInfo.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Services/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Services/SearchResult.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Services/SearchResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Services/SearchResults.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/Services/WikipediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/Services/WikipediaService.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/ThisAddIn.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/WordAddIn1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/WordAddIn1.csproj -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/WordAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/WordAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsView.xaml -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsView.xaml.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/WpfControls/WikipediaResultsViewModel.cs -------------------------------------------------------------------------------- /Office2010_VSTOContribSamples/WordAddIn1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Office2010_VSTOContribSamples/WordAddIn1/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/Resources/Logo.png -------------------------------------------------------------------------------- /VSTO Contrib Office Application.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/VSTO Contrib Office Application.proj -------------------------------------------------------------------------------- /VSTOContrib.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/VSTOContrib.proj -------------------------------------------------------------------------------- /lib/xUnit.net/HTML.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/HTML.xslt -------------------------------------------------------------------------------- /lib/xUnit.net/NUnitXml.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/NUnitXml.xslt -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.console.clr4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.console.clr4.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.console.clr4.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.console.clr4.exe.config -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.console.clr4.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.console.clr4.x86.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.console.clr4.x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.console.clr4.x86.exe.config -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.console.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.console.exe.config -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.console.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.console.x86.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.console.x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.console.x86.exe.config -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.dll -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.dll.tdnet -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.extensions.dll -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.extensions.xml -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.gui.clr4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.gui.clr4.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.gui.clr4.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.gui.clr4.x86.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.gui.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.gui.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.gui.x86.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.installer.exe -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.runner.msbuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.runner.msbuild.dll -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.runner.tdnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.runner.tdnet.dll -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.runner.utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.runner.utility.dll -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.runner.utility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.runner.utility.xml -------------------------------------------------------------------------------- /lib/xUnit.net/xunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/lib/xUnit.net/xunit.xml -------------------------------------------------------------------------------- /src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/Add-inUninstaller/Add-inUninstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Add-inUninstaller.csproj -------------------------------------------------------------------------------- /src/Add-inUninstaller/Add-inUninstaller.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Add-inUninstaller.ncrunchproject -------------------------------------------------------------------------------- /src/Add-inUninstaller/Add-inUninstaller.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Add-inUninstaller.v2.ncrunchproject -------------------------------------------------------------------------------- /src/Add-inUninstaller/Addin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Addin.cs -------------------------------------------------------------------------------- /src/Add-inUninstaller/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/App.xaml -------------------------------------------------------------------------------- /src/Add-inUninstaller/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/App.xaml.cs -------------------------------------------------------------------------------- /src/Add-inUninstaller/DesignData/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/DesignData/MainWindow.xaml -------------------------------------------------------------------------------- /src/Add-inUninstaller/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/MainWindow.xaml -------------------------------------------------------------------------------- /src/Add-inUninstaller/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Add-inUninstaller/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/Add-inUninstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Add-inUninstaller/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Add-inUninstaller/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Add-inUninstaller/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Add-inUninstaller/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Add-inUninstaller/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Add-inUninstaller/app.config -------------------------------------------------------------------------------- /src/Documentation/CreateProject.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Documentation/CreateProject.PNG -------------------------------------------------------------------------------- /src/Information/SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Information/SolutionInfo.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/1359546404296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/1359546404296.png -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/AddinModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/AddinModule.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/OfficeContexts/IQuotesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/OfficeContexts/IQuotesService.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/OfficeContexts/QuotesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/OfficeContexts/QuotesService.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/OfficeContexts/SpreadSheetView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/OfficeContexts/SpreadSheetView.xml -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/OfficeContexts/SpreadSheetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/OfficeContexts/SpreadSheetViewModel.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/QuoteGeneratorAddin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/QuoteGeneratorAddin.csproj -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/QuoteGeneratorAddin.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/QuoteGeneratorAddin.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/QuoteGeneratorAddin.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/QuoteGeneratorAddin.v2.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/QuoteGeneratorAddin_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/QuoteGeneratorAddin_TemporaryKey.pfx -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/ThisAddIn.cs -------------------------------------------------------------------------------- /src/Samples/Excel/QuoteGeneratorAddin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Excel/QuoteGeneratorAddin/packages.config -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlook.Tests/GitHubForOutlook.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlook.Tests/GitHubForOutlook.Tests.csproj -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlook.Tests/GitHubForOutlook.Tests.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlook.Tests/GitHubForOutlook.Tests.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlook.Tests/GitHubForOutlook.Tests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlook.Tests/GitHubForOutlook.Tests.v2.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlook.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlook.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/AddinModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/AddinModule.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/CreateIssueControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/CreateIssueControl.xaml -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/CreateIssueControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/CreateIssueControl.xaml.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/CreateIssueViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/CreateIssueViewModel.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/CreateIssuesApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/CreateIssuesApi.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/ICreateIssueViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/ICreateIssueViewModel.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/MyReposApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/MyReposApi.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/NewIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/NewIssue.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/RepositoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/CreateIssue/RepositoryModel.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/ITaskPaneContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/ITaskPaneContent.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/ITaskPaneContentHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/ITaskPaneContentHost.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/GitHubSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/GitHubSettings.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/IGitHubSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/IGitHubSettings.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/ISettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/ISettingsViewModel.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/SettingsControl.xaml -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/SettingsControl.xaml.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/Settings/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/TaskPaneContentHost.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/TaskPaneContentHost.xaml -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Features/TaskPaneContentHost.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Features/TaskPaneContentHost.xaml.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/GitHubForOutlookAddin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/GitHubForOutlookAddin.csproj -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/GitHubForOutlookAddin.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/GitHubForOutlookAddin.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/GitHubForOutlookAddin.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/GitHubForOutlookAddin.v2.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/GitHubForOutlookAddin_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/GitHubForOutlookAddin_TemporaryKey.pfx -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Resources/gtfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Resources/gtfo.png -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Resources/gtfo32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Resources/gtfo32x32.png -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Ribbons/GithubExplorerRibbon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Ribbons/GithubExplorerRibbon.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/Ribbons/GithubExplorerRibbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/Ribbons/GithubExplorerRibbon.xml -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/ThisAddIn.cs -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/app.config -------------------------------------------------------------------------------- /src/Samples/Outlook/GitHubForOutlookAddin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Outlook/GitHubForOutlookAddin/packages.config -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/AddTextAddin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/AddTextAddin.csproj -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/AddTextAddin.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/AddTextAddin.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/AddTextAddin.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/AddTextAddin.v2.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/AddTextAddin_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/AddTextAddin_TemporaryKey.pfx -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/PresentationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/PresentationViewModel.cs -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/PresentationViewModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/PresentationViewModel.xml -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /src/Samples/PowerPoint/AddTextAddin/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/PowerPoint/AddTextAddin/ThisAddIn.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin.UnitTests/WikipediaWordAddin.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin.UnitTests/WikipediaWordAddin.UnitTests.csproj -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin.UnitTests/WikipediaWordAddin.UnitTests.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin.UnitTests/WikipediaWordAddin.UnitTests.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin.UnitTests/WikipediaWordAddin.UnitTests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin.UnitTests/WikipediaWordAddin.UnitTests.v2.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin.UnitTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin.UnitTests/app.config -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin.UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin.UnitTests/packages.config -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/AddinModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/AddinModule.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/OfficeContexts/DocumentView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/OfficeContexts/DocumentView.xml -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/OfficeContexts/DocumentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/OfficeContexts/DocumentViewModel.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Properties/Annotations.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Services/IWikipediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Services/IWikipediaService.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Services/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Services/Query.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Services/SearchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Services/SearchInfo.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Services/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Services/SearchResult.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Services/SearchResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Services/SearchResults.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/Services/WikipediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/Services/WikipediaService.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/ThisAddIn.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/WikipediaWordAddin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/WikipediaWordAddin.csproj -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/WikipediaWordAddin.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/WikipediaWordAddin.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/WikipediaWordAddin.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/WikipediaWordAddin.v2.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/WordAddIn1.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/WordAddIn1.ncrunchproject -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/WordAddIn1_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/WordAddIn1_TemporaryKey.pfx -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/WpfControls/WikipediaResultsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/WpfControls/WikipediaResultsView.xaml -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/WpfControls/WikipediaResultsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/WpfControls/WikipediaResultsView.xaml.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/WpfControls/WikipediaResultsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/WpfControls/WikipediaResultsViewModel.cs -------------------------------------------------------------------------------- /src/Samples/Word/WikipediaWordAddin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/Samples/Word/WikipediaWordAddin/packages.config -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/ApplicationTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/ApplicationTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/Excel.TestDoubles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/Excel.TestDoubles.csproj -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/Excel.TestDoubles.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/Excel.TestDoubles.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/Excel2013Facade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/Excel2013Facade.cs -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/WindowTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/WindowTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/WindowsTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/WindowsTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/WorkbookTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/WorkbookTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Excel.TestDoubles/WorkbooksTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Excel.TestDoubles/WorkbooksTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Office.TestDoubles/Office.TestDoubles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Office.TestDoubles/Office.TestDoubles.csproj -------------------------------------------------------------------------------- /src/TestDoubles/Office.TestDoubles/Office.TestDoubles.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Office.TestDoubles/Office.TestDoubles.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestDoubles/Office.TestDoubles/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Office.TestDoubles/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestDoubles/Office.TestDoubles/RibbonUITestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Office.TestDoubles/RibbonUITestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/TestDoubleTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/TestDoubleTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestDoubles/TestDoubleTests/TestDoubleTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/TestDoubleTests/TestDoubleTests.csproj -------------------------------------------------------------------------------- /src/TestDoubles/TestDoubleTests/TestDoubleTests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/TestDoubleTests/TestDoubleTests.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestDoubles/TestDoubleTests/WordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/TestDoubleTests/WordTests.cs -------------------------------------------------------------------------------- /src/TestDoubles/TestDoubleTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/TestDoubleTests/packages.config -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/ApplicationTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/ApplicationTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/DocumentTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/DocumentTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/DocumentsTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/DocumentsTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/WindowTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/WindowTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/WindowsTestDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/WindowsTestDouble.cs -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/Word.TestDoubles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/Word.TestDoubles.csproj -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/Word.TestDoubles.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/Word.TestDoubles.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestDoubles/Word.TestDoubles/Word2013Facade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestDoubles/Word.TestDoubles/Word2013Facade.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/ComCleanupEnumeratorFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/ComCleanupEnumeratorFixture.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/Internal/ViewModelRibbonTypesLookupProviderFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/Internal/ViewModelRibbonTypesLookupProviderFixture.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/Internal/CustomTaskPaneDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/Internal/CustomTaskPaneDouble.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/Internal/OneToManyCustomTaskPaneAdapterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/Internal/OneToManyCustomTaskPaneAdapterTests.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/AddInBaseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/AddInBaseFactory.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/CustomTaskPaneCollectionDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/CustomTaskPaneCollectionDouble.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/Globals.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/TestAddInBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/TestAddInBase.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/TestAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/TestAddin.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/TestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestAddin/TestFactory.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestContextProvider.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbon.xml -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonFactory.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonTypes.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonViewModel.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonViewModel2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonViewModel2.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonViewModel2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestRibbonViewModel2.xml -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestStubs/TestStruct.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestView.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestViewModelFactory.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestWindowContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/TestWindowContext.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/the_ribbon_factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/the_ribbon_factory.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/the_ribbon_viewmodel_helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/the_ribbon_viewmodel_helper.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/the_view_model_resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/RibbonFactory/the_view_model_resolver.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/VSTOContrib.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/VSTOContrib.Core.Tests.csproj -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/VSTOContrib.Core.Tests.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/VSTOContrib.Core.Tests.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/VSTOContrib.Core.Tests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/VSTOContrib.Core.Tests.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Core.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Core.Tests/packages.config -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/ExcelScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/ExcelScenario.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/RibbonControlDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/RibbonControlDouble.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/RibbonFactory/Views/TestRibbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/RibbonFactory/Views/TestRibbon.xml -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/RibbonFactory/Views/TestRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/RibbonFactory/Views/TestRibbonViewModel.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/VSTOContrib.Excel.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/VSTOContrib.Excel.Tests.csproj -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/VSTOContrib.Excel.Tests.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/VSTOContrib.Excel.Tests.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/VSTOContrib.Excel.Tests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/VSTOContrib.Excel.Tests.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Excel.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Excel.Tests/packages.config -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/GenericSyncServiceDownloadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/GenericSyncServiceDownloadTests.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/GenericSyncServiceTwoWayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/GenericSyncServiceTwoWayTests.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/RibbonFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/RibbonFactoryTests.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/TestRibbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/TestRibbon.xml -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/VSTOContrib.Outlook.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/VSTOContrib.Outlook.Tests.csproj -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/VSTOContrib.Outlook.Tests.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/VSTOContrib.Outlook.Tests.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/VSTOContrib.Outlook.Tests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/VSTOContrib.Outlook.Tests.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/ViewModelResolverExplorerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/ViewModelResolverExplorerTests.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Outlook.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Outlook.Tests/packages.config -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.PowerPoint.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.PowerPoint.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.PowerPoint.Tests/VSTOContrib.PowerPoint.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.PowerPoint.Tests/VSTOContrib.PowerPoint.Tests.csproj -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.PowerPoint.Tests/VSTOContrib.PowerPoint.Tests.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.PowerPoint.Tests/VSTOContrib.PowerPoint.Tests.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.PowerPoint.Tests/VSTOContrib.PowerPoint.Tests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.PowerPoint.Tests/VSTOContrib.PowerPoint.Tests.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.PowerPoint.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.PowerPoint.Tests/packages.config -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Word.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Word.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Word.Tests/RibbonFactory/Views/TestRibbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Word.Tests/RibbonFactory/Views/TestRibbon.xml -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Word.Tests/RibbonFactory/Views/TestRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Word.Tests/RibbonFactory/Views/TestRibbonViewModel.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Word.Tests/VSTOContrib.Word.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Word.Tests/VSTOContrib.Word.Tests.csproj -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Word.Tests/VSTOContrib.Word.Tests.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Word.Tests/VSTOContrib.Word.Tests.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Word.Tests/VSTOContrib.Word.Tests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Word.Tests/VSTOContrib.Word.Tests.v2.ncrunchproject -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Word.Tests/WordScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Word.Tests/WordScenarios.cs -------------------------------------------------------------------------------- /src/TestProjects/VSTOContrib.Word.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/TestProjects/VSTOContrib.Word.Tests/packages.config -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/AutofacViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/AutofacViewModelFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/Readme.txt -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/VSTOContrib.Autofac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/VSTOContrib.Autofac.csproj -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/VSTOContrib.Autofac.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/VSTOContrib.Autofac.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/VSTOContrib.Autofac.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/VSTOContrib.Autofac.nuspec -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/VSTOContrib.Autofac.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/VSTOContrib.Autofac.v2.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Autofac/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Autofac/packages.config -------------------------------------------------------------------------------- /src/VSTOContrib.Core/ClickOnceUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/ClickOnceUpdater.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/DefaultViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/DefaultViewModelFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/EnumExtensions.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Extensions/ComCleanupEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Extensions/ComCleanupEnumerator.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Extensions/ComCleanupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Extensions/ComCleanupExtensions.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Extensions/ComCleanupWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Extensions/ComCleanupWrapper.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Extensions/ComObjectWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Extensions/ComObjectWrapper.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Extensions/CommonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Extensions/CommonExtensions.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Extensions/RegistryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Extensions/RegistryExtensions.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Helpers/PictureConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Helpers/PictureConverter.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/IViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/IViewModelFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/LogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/LogWriter.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/NotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/NotifyPropertyChanged.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/OfficeViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/OfficeViewModelBase.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/OfficeWin32Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/OfficeWin32Window.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Properties/Annotations.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Properties/Resources.resx -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/DefaultViewLocationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/DefaultViewLocationStrategy.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/HideCustomTaskPanesForContextEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/HideCustomTaskPanesForContextEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/ICustomTaskPaneWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/ICustomTaskPaneWrapper.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/IErrorHandler.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/ICustomTaskPaneRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/ICustomTaskPaneRegister.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/IRegisterCustomTaskPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/IRegisterCustomTaskPane.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/IRibbonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/IRibbonFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/IRibbonFactoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/IRibbonFactoryController.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/IRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/IRibbonViewModel.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/IViewContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/IViewContextProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/IViewLocationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/IViewLocationStrategy.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/IViewModelResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/IViewModelResolver.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Interfaces/IViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Interfaces/IViewProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/CallbackTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/CallbackTarget.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/ControlCallbackLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/ControlCallbackLookup.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/CustomTaskPaneRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/CustomTaskPaneRegister.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/NullContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/NullContext.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/OneToManyCustomTaskPaneAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/OneToManyCustomTaskPaneAdapter.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/TaskPaneRegistrationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/TaskPaneRegistrationInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/ViewModelKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/ViewModelKey.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/ViewModelResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/ViewModelResolver.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/Internal/ViewModelRibbonTypesLookupProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/Internal/ViewModelRibbonTypesLookupProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/NewViewEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/NewViewEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/RibbonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/RibbonFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/RibbonFactoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/RibbonFactoryController.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/RibbonViewModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/RibbonViewModelAttribute.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/RibbonXmlRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/RibbonXmlRewriter.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/ViewClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/ViewClosedEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/ViewLocationStrategyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/ViewLocationStrategyBase.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/ViewNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/ViewNotFoundException.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/RibbonFactory/VstoContribContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/RibbonFactory/VstoContribContext.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/UpdateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/UpdateResult.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/VSTOContrib.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/VSTOContrib.Core.csproj -------------------------------------------------------------------------------- /src/VSTOContrib.Core/VSTOContrib.Core.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/VSTOContrib.Core.csproj.user -------------------------------------------------------------------------------- /src/VSTOContrib.Core/VSTOContrib.Core.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/VSTOContrib.Core.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Core/VSTOContrib.Core.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/VSTOContrib.Core.v2.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Core/VstoClickOnceUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/VstoClickOnceUpdater.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/VstoContribLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/VstoContribLog.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/VstoContribLogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/VstoContribLogLevel.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Wpf/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Wpf/DelegateCommand.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Wpf/WpfPanelHost.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Wpf/WpfPanelHost.Designer.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Wpf/WpfPanelHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Wpf/WpfPanelHost.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Core/Wpf/WpfPanelHost.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Core/Wpf/WpfPanelHost.resx -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/CloseRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/CloseRequestInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/RibbonFactory/ExcelRibbonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/RibbonFactory/ExcelRibbonFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/RibbonFactory/ExcelRibbonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/RibbonFactory/ExcelRibbonType.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/RibbonFactory/ExcelRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/RibbonFactory/ExcelRibbonViewModel.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/RibbonFactory/ExcelRibbonViewModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/RibbonFactory/ExcelRibbonViewModelAttribute.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/RibbonFactory/ExcelViewContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/RibbonFactory/ExcelViewContextProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/RibbonFactory/ExcelViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/RibbonFactory/ExcelViewProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/VSTOContrib.Excel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/VSTOContrib.Excel.csproj -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/VSTOContrib.Excel.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/VSTOContrib.Excel.csproj.user -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/VSTOContrib.Excel.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/VSTOContrib.Excel.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/VSTOContrib.Excel.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/VSTOContrib.Excel.v2.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/WorkbookClosedMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/WorkbookClosedMonitor.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Excel/WorksheetClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Excel/WorksheetClosedEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/CancelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/CancelEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/ComComponentCategoriesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/ComComponentCategoriesManager.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/EventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/ExplorerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/ExplorerEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/ExplorerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/ExplorerWrapper.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/FolderHomePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/FolderHomePage.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/ICatRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/ICatRegister.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/InspectorClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/InspectorClosedEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/InspectorWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/InspectorWrapper.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/ItemAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/ItemAdapter.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/OutlookFolderMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/OutlookFolderMonitor.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Properties/Resources.resx -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/RibbonFactory/InspectorToRibbonTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/RibbonFactory/InspectorToRibbonTypeConverter.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/RibbonFactory/OutlookRibbonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/RibbonFactory/OutlookRibbonFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/RibbonFactory/OutlookRibbonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/RibbonFactory/OutlookRibbonType.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/RibbonFactory/OutlookRibbonViewModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/RibbonFactory/OutlookRibbonViewModelAttribute.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/RibbonFactory/OutlookViewContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/RibbonFactory/OutlookViewContextProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/RibbonFactory/OutlookViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/RibbonFactory/OutlookViewProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/Conficts/ConflictResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/Conficts/ConflictResolution.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/Conficts/IConflictResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/Conficts/IConflictResolver.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/Conficts/LocalWinsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/Conficts/LocalWinsResolver.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/Conficts/RemoteWinsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/Conficts/RemoteWinsResolver.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/DeletedEventsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/DeletedEventsHelper.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/GenericSynchronisationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/GenericSynchronisationService.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/ISyncSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/ISyncSettings.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/ISynchronisationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/ISynchronisationProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/ISynchronisationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/ISynchronisationService.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/SyncDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/SyncDirection.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/SynchronisationCompleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/SynchronisationCompleteEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/Services/SynchronisationResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/Services/SynchronisationResults.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/UserPropertyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/UserPropertyExtensions.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/VSTOContrib.Outlook.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/VSTOContrib.Outlook.csproj -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/VSTOContrib.Outlook.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/VSTOContrib.Outlook.csproj.user -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/VSTOContrib.Outlook.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/VSTOContrib.Outlook.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Outlook/VSTOContrib.Outlook.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Outlook/VSTOContrib.Outlook.v2.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/PowerPointRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/PowerPointRibbonViewModel.cs -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/PresentationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/PresentationWrapper.cs -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointRibbonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointRibbonFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointRibbonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointRibbonType.cs -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointRibbonViewModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointRibbonViewModelAttribute.cs -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointViewContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointViewContextProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/RibbonFactory/PowerPointViewProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/VSTOContrib.PowerPoint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/VSTOContrib.PowerPoint.csproj -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/VSTOContrib.PowerPoint.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/VSTOContrib.PowerPoint.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.PowerPoint/VSTOContrib.PowerPoint.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.PowerPoint/VSTOContrib.PowerPoint.v2.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Testing/OfficeObjectMother.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Testing/OfficeObjectMother.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Testing/OfficeObjectMotherNET35.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Testing/OfficeObjectMotherNET35.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Testing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Testing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Testing/VSTOContrib.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Testing/VSTOContrib.Testing.csproj -------------------------------------------------------------------------------- /src/VSTOContrib.Testing/VSTOContrib.Testing.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Testing/VSTOContrib.Testing.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Testing/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Testing/packages.config -------------------------------------------------------------------------------- /src/VSTOContrib.Word/DocumentClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/DocumentClosedEventArgs.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/DocumentWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/DocumentWrapper.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/RibbonFactory/WordRibbonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/RibbonFactory/WordRibbonFactory.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/RibbonFactory/WordRibbonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/RibbonFactory/WordRibbonType.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/RibbonFactory/WordRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/RibbonFactory/WordRibbonViewModel.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/RibbonFactory/WordRibbonViewModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/RibbonFactory/WordRibbonViewModelAttribute.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/RibbonFactory/WordViewContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/RibbonFactory/WordViewContextProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/RibbonFactory/WordViewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/RibbonFactory/WordViewProvider.cs -------------------------------------------------------------------------------- /src/VSTOContrib.Word/VSTOContrib.Word.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/VSTOContrib.Word.csproj -------------------------------------------------------------------------------- /src/VSTOContrib.Word/VSTOContrib.Word.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/VSTOContrib.Word.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.Word/VSTOContrib.Word.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.Word/VSTOContrib.Word.v2.ncrunchproject -------------------------------------------------------------------------------- /src/VSTOContrib.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.ncrunchsolution -------------------------------------------------------------------------------- /src/VSTOContrib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.sln -------------------------------------------------------------------------------- /src/VSTOContrib.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.sln.DotSettings -------------------------------------------------------------------------------- /src/VSTOContrib.v2.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/src/VSTOContrib.v2.ncrunchsolution -------------------------------------------------------------------------------- /tools/GitVersion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeGinnivan/VSTOContrib/HEAD/tools/GitVersion.exe --------------------------------------------------------------------------------