├── .github └── workflows │ ├── GetBuildVersion.yml │ ├── NewsReader.CI.yml │ ├── NewsReader.UITestAndroid.yml │ └── System.Waf.CI.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── src ├── .editorconfig ├── NewsReader.UITest ├── Directory.Build.props ├── Directory.Packages.props ├── NewsReader.UITest.sln ├── NewsReader.UITest │ ├── Controls │ │ ├── ContextMenu.cs │ │ ├── Entry.cs │ │ ├── Popup.cs │ │ ├── SearchBar.cs │ │ └── YesNoPopup.cs │ ├── NewsReader.UITest.csproj │ ├── Tests │ │ ├── CustomFeedServiceTest.cs │ │ └── NewsReaderTest.cs │ ├── UITest.cs │ └── Views │ │ ├── AddEditFeedView.cs │ │ ├── FeedItemView.cs │ │ ├── FeedView.cs │ │ ├── SettingsView.cs │ │ └── ShellWindow.cs ├── UITest.Core │ ├── ContextHelper.cs │ ├── DeviceCollectionTraitAttribute.cs │ ├── ElementHelper.cs │ ├── FindHelper.cs │ ├── Log.cs │ ├── RectangleHelper.cs │ ├── UITest.Core.csproj │ └── UITestBase.cs └── UITest.FeedService │ ├── FeedWebApp.cs │ ├── SyndicationData.cs │ └── UITest.FeedService.csproj ├── NewsReader ├── CodeCoverage.runsettings ├── Directory.Build.props ├── Directory.Packages.props ├── NewsReader.Applications.Test │ ├── ContextExtensions.cs │ ├── Controllers │ │ └── AppControllerTest.cs │ ├── GlobalSuppressions.cs │ ├── MockPresentationModule.cs │ ├── NewsReader.Applications.Test.csproj │ ├── Services │ │ ├── MockAppInfoService.cs │ │ ├── MockDataService.cs │ │ ├── MockLauncherService.cs │ │ ├── MockMessageService.cs │ │ ├── MockNetworkInfoService.cs │ │ ├── MockSyndicationService.cs │ │ └── MockWebStorageService.cs │ ├── TestBase.cs │ └── Views │ │ ├── MockFeedView .cs │ │ ├── MockSettingsView.cs │ │ └── MockShellView.cs ├── NewsReader.Applications │ ├── ApplicationsModule.cs │ ├── Controllers │ │ ├── AppController.cs │ │ ├── DataController.cs │ │ ├── FeedsController.cs │ │ ├── IAppController.cs │ │ └── SettingsController.cs │ ├── DataModels │ │ ├── DisplayItemLifetime.cs │ │ ├── DisplayMaxItemsLimit.cs │ │ └── NavigationItem.cs │ ├── GlobalSuppressions.cs │ ├── Log.cs │ ├── LogExtensions.cs │ ├── NewsReader.Applications.csproj │ ├── Properties │ │ ├── AppSettings.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.de.resx │ │ └── Resources.resx │ ├── Services │ │ ├── IAppInfoService.cs │ │ ├── IDataService.cs │ │ ├── ILauncherService.cs │ │ ├── ILocalizationService.cs │ │ ├── IMessageService.cs │ │ ├── INavigationService.cs │ │ ├── INetworkInfoService.cs │ │ ├── ISyndicationService.cs │ │ ├── IWebStorageService.cs │ │ └── MessageServiceExtensions.cs │ ├── ViewModels │ │ ├── AddEditFeedViewModel.cs │ │ ├── FeedItemViewModel.cs │ │ ├── FeedViewModel.cs │ │ ├── SettingsViewModel.cs │ │ └── ShellViewModel.cs │ └── Views │ │ ├── IAddEditFeedView.cs │ │ ├── IFeedItemView.cs │ │ ├── IFeedView.cs │ │ ├── ISettingsView.cs │ │ └── IShellView.cs ├── NewsReader.Domain.Test │ ├── FeedItemTest.cs │ ├── FeedManagerTest.cs │ ├── FeedTest.cs │ ├── GlobalSuppressions.cs │ ├── NewsReader.Domain.Test.csproj │ └── SerializerHelper.cs ├── NewsReader.Domain │ ├── Feed.cs │ ├── FeedItem.cs │ ├── FeedManager.cs │ ├── Foundation │ │ ├── ObservableGroupedListView.cs │ │ └── ObservableGroupingView.cs │ ├── GlobalSuppressions.cs │ ├── IDataManager.cs │ ├── Log.cs │ └── NewsReader.Domain.csproj ├── NewsReader.MauiSystem │ ├── GlobalSuppressions.cs │ ├── Log.cs │ ├── MauiModule.cs │ ├── MauiProgram.cs │ ├── NewsReader.MauiSystem.csproj │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidModule.cs │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── Windows │ │ │ ├── App.manifest │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── WindowsModule.cs │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── IosModule.cs │ │ │ ├── Program.cs │ │ │ └── Services │ │ │ └── LocalizationService.cs │ ├── Properties │ │ └── launchSettings.json │ └── Resources │ │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── materialdesignicons-webfont.ttf │ │ ├── Raw │ │ └── AboutAssets.txt │ │ └── Splash │ │ └── splash.svg ├── NewsReader.Presentation.Test │ ├── Converters │ │ └── NullToBoolConverterTest.cs │ └── NewsReader.Presentation.Test.csproj ├── NewsReader.Presentation │ ├── App.xaml │ ├── App.xaml.cs │ ├── Converters │ │ ├── ErrorsToMessageConverter.cs │ │ ├── LocalizeDisplayItemLifetimeConverter.cs │ │ ├── LocalizeDisplayMaxItemsLimitConverter.cs │ │ ├── MarkAsReadConverter.cs │ │ └── NullToBoolConverter.cs │ ├── GlobalSuppressions.cs │ ├── Log.cs │ ├── NewsReader.Presentation.csproj │ ├── PresentationModule.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.de.resx │ │ └── Resources.resx │ ├── Resources │ │ └── Styles │ │ │ ├── Colors.xaml │ │ │ └── Styles.xaml │ ├── Services │ │ ├── AppInfoService.cs │ │ ├── AppTraceTarget.cs │ │ ├── DataService.cs │ │ ├── GraphApi.cs │ │ ├── LauncherService.cs │ │ ├── MessageService.cs │ │ ├── MsalAuthorizationHandler.cs │ │ ├── NetworkInfoService.cs │ │ ├── SyndicationService.cs │ │ └── WebStorageService.cs │ └── Views │ │ ├── AddEditFeedView.xaml │ │ ├── AddEditFeedView.xaml.cs │ │ ├── FeedItemView.xaml │ │ ├── FeedItemView.xaml.cs │ │ ├── FeedView.xaml │ │ ├── FeedView.xaml.cs │ │ ├── SettingsView.xaml │ │ ├── SettingsView.xaml.cs │ │ ├── ShellView.xaml │ │ └── ShellView.xaml.cs └── NewsReader.sln ├── NuGet.config ├── Samples.UITest ├── BookLibrary.Test │ ├── BookLibrary.Test.csproj │ ├── Tests │ │ ├── AddressBookTest.cs │ │ ├── BookLibraryTest.cs │ │ ├── GeneralTest.cs │ │ └── ReportingTest.cs │ ├── UITest.cs │ └── Views │ │ ├── BookListView.cs │ │ ├── BookView.cs │ │ ├── LendToWindow.cs │ │ ├── PersonListView.cs │ │ ├── PersonView.cs │ │ ├── ReportView.cs │ │ └── ShellWindow.cs ├── Directory.Build.props ├── Directory.Packages.props ├── InformationManager.Test │ ├── Controls │ │ ├── Document.cs │ │ └── SearchBox.cs │ ├── InformationManager.Test.csproj │ ├── Tests │ │ ├── AddressBookTest.cs │ │ ├── EmailTest.cs │ │ └── GeneralTest.cs │ ├── UITest.cs │ └── Views │ │ ├── BasicEmailAccountView.cs │ │ ├── ContactLayoutView.cs │ │ ├── ContactListView.cs │ │ ├── ContactView.cs │ │ ├── EditEmailAccountWindow.cs │ │ ├── EmailAccountsWindow.cs │ │ ├── EmailLayoutView.cs │ │ ├── EmailListView.cs │ │ ├── EmailView.cs │ │ ├── ExchangeSettingsView.cs │ │ ├── NewEmailWindow.cs │ │ ├── Pop3SettingsView.cs │ │ ├── SelectContactWindow.cs │ │ └── ShellWindow.cs ├── Samples.UITest.sln ├── UITest.Core │ ├── Controls │ │ ├── HyperlinkGridCell.cs │ │ └── TextGridCell.cs │ ├── LaunchArgumentsBase.cs │ ├── SystemViews │ │ ├── LegacyPrintDialog.cs │ │ ├── MessageBox.cs │ │ ├── OpenFileDialog.cs │ │ ├── PrintDialog.cs │ │ └── SaveFileDialog.cs │ ├── UIAssert.cs │ ├── UITest.Core.csproj │ ├── UITestBase.cs │ └── UITestHelper.cs └── Writer.Test │ ├── Tests │ └── WriterTest.cs │ ├── UITest.cs │ ├── Views │ ├── RichTextView.cs │ ├── SaveChangesWindow.cs │ ├── ShellWindow.cs │ └── StartView.cs │ └── Writer.Test.csproj └── System.Waf ├── Changelog.txt ├── CodeCoverage.runsettings ├── Directory.Build.props ├── Directory.Packages.props ├── NullableAttributes.cs ├── Samples ├── BookLibrary │ ├── BookLibrary.Library.Applications.Test │ │ ├── ApplicationsTest.cs │ │ ├── BookLibrary.Library.Applications.Test.csproj │ │ ├── Controllers │ │ │ ├── BookControllerTest.cs │ │ │ ├── EntityControllerTest.cs │ │ │ ├── MockEntityController.cs │ │ │ ├── ModuleControllerTest.cs │ │ │ └── PersonControllerTest.cs │ │ ├── DataModels │ │ │ └── BookDataModelTest.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Integration │ │ │ └── IntegrationTest.cs │ │ ├── MockPresentationModule.cs │ │ ├── Services │ │ │ ├── MockDBContextService.cs │ │ │ └── MockEmailService.cs │ │ ├── ViewModels │ │ │ ├── BookListViewModelTest.cs │ │ │ ├── BookViewModelTest.cs │ │ │ ├── LendToViewModelTest.cs │ │ │ ├── PersonListViewModelTest.cs │ │ │ ├── PersonViewModelTest.cs │ │ │ └── ShellViewModelTest.cs │ │ └── Views │ │ │ ├── MockBookListView.cs │ │ │ ├── MockBookView.cs │ │ │ ├── MockLendToView.cs │ │ │ ├── MockPersonListView.cs │ │ │ ├── MockPersonView.cs │ │ │ └── MockShellView.cs │ ├── BookLibrary.Library.Applications │ │ ├── ApplicationsModule.cs │ │ ├── BookLibrary.Library.Applications.csproj │ │ ├── Controllers │ │ │ ├── BookController.cs │ │ │ ├── EntityController.cs │ │ │ ├── IEntityController.cs │ │ │ ├── ModuleController.cs │ │ │ └── PersonController.cs │ │ ├── Data │ │ │ └── BookLibraryContext.cs │ │ ├── DataModels │ │ │ └── BookDataModel.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── Properties │ │ │ ├── AppSettings.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Services │ │ │ ├── EntityService.cs │ │ │ ├── IDBContextService.cs │ │ │ ├── IEmailService.cs │ │ │ ├── IEntityService.cs │ │ │ ├── IShellService.cs │ │ │ └── ShellService.cs │ │ ├── ViewModels │ │ │ ├── BookListViewModel.cs │ │ │ ├── BookViewModel.cs │ │ │ ├── LendToViewModel.cs │ │ │ ├── PersonListViewModel.cs │ │ │ ├── PersonViewModel.cs │ │ │ └── ShellViewModel.cs │ │ └── Views │ │ │ ├── IBookListView.cs │ │ │ ├── IBookView.cs │ │ │ ├── ILendToView.cs │ │ │ ├── IPersonListView.cs │ │ │ ├── IPersonView.cs │ │ │ └── IShellView.cs │ ├── BookLibrary.Library.Domain.Test │ │ ├── BookLibrary.Library.Domain.Test.csproj │ │ ├── BookTest.cs │ │ └── PersonTest.cs │ ├── BookLibrary.Library.Domain │ │ ├── Book.cs │ │ ├── BookLibrary.Library.Domain.csproj │ │ ├── GlobalSuppressions.cs │ │ ├── Language.cs │ │ ├── Log.cs │ │ ├── Person.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ └── BookLibrary.db │ ├── BookLibrary.Library.Presentation.Test │ │ ├── BookLibrary.Library.Presentation.Test.csproj │ │ └── Converters │ │ │ ├── LanguageToStringConverterTest.cs │ │ │ └── StringToUriConverterTest.cs │ ├── BookLibrary.Library.Presentation │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BookLibrary.Library.Presentation.csproj │ │ ├── Converters │ │ │ ├── LanguageToStringConverter.cs │ │ │ └── StringToUriConverter.cs │ │ ├── Data │ │ │ ├── BookMapping.cs │ │ │ └── PersonMapping.cs │ │ ├── DesignData │ │ │ ├── MockSettingsService.cs │ │ │ ├── MockShellService.cs │ │ │ ├── SampleBookListViewModel.cs │ │ │ ├── SampleBookViewModel.cs │ │ │ ├── SampleLendToViewModel.cs │ │ │ ├── SamplePersonListViewModel.cs │ │ │ ├── SamplePersonViewModel.cs │ │ │ └── SampleShellViewModel.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── PresentationModule.cs │ │ ├── Properties │ │ │ ├── AppConfig.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── ControlResources.xaml │ │ │ ├── DataResources.xaml │ │ │ ├── ImageResources.xaml │ │ │ ├── Images │ │ │ │ ├── BookLibrary.ico │ │ │ │ ├── Copy.png │ │ │ │ ├── Cut.png │ │ │ │ ├── Delete.png │ │ │ │ ├── Email.png │ │ │ │ ├── Paste.png │ │ │ │ ├── Redo.png │ │ │ │ ├── Save.png │ │ │ │ └── Undo.png │ │ │ └── LayoutResources.xaml │ │ ├── Services │ │ │ ├── DBContextService.cs │ │ │ └── EmailService.cs │ │ └── Views │ │ │ ├── BookListView.xaml │ │ │ ├── BookListView.xaml.cs │ │ │ ├── BookView.xaml │ │ │ ├── BookView.xaml.cs │ │ │ ├── LendToWindow.xaml │ │ │ ├── LendToWindow.xaml.cs │ │ │ ├── PersonListView.xaml │ │ │ ├── PersonListView.xaml.cs │ │ │ ├── PersonView.xaml │ │ │ ├── PersonView.xaml.cs │ │ │ ├── ShellWindow.xaml │ │ │ └── ShellWindow.xaml.cs │ ├── BookLibrary.Reporting.Applications.Test │ │ ├── BookLibrary.Reporting.Applications.Test.csproj │ │ ├── Controllers │ │ │ └── ModuleControllerTest.cs │ │ ├── DataModels │ │ │ └── BorrowedBooksReportDataModelTest.cs │ │ ├── GlobalSuppressions.cs │ │ ├── MockReportingPresentationModule.cs │ │ ├── ReportingTest.cs │ │ ├── Reports │ │ │ ├── MockBookListReport.cs │ │ │ ├── MockBorrowedBooksReport.cs │ │ │ └── MockReport.cs │ │ ├── ViewModels │ │ │ └── ReportViewModelTest.cs │ │ └── Views │ │ │ └── MockReportView.cs │ ├── BookLibrary.Reporting.Applications │ │ ├── BookLibrary.Reporting.Applications.csproj │ │ ├── Controllers │ │ │ └── ModuleController.cs │ │ ├── DataModels │ │ │ ├── BookListReportDataModel.cs │ │ │ └── BorrowedBooksReportDataModel.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── ReportingApplicationsModule.cs │ │ ├── Reports │ │ │ ├── IBookListReport.cs │ │ │ ├── IBorrowedBooksReport.cs │ │ │ └── IReport.cs │ │ ├── ViewModels │ │ │ └── ReportViewModel.cs │ │ └── Views │ │ │ └── IReportView.cs │ ├── BookLibrary.Reporting.Presentation │ │ ├── BookLibrary.Reporting.Presentation.csproj │ │ ├── Controls │ │ │ ├── BindableTable.cs │ │ │ ├── ContentElement.cs │ │ │ └── ItemsElement.cs │ │ ├── DesignData │ │ │ ├── SampleBookListReportDataModel.cs │ │ │ ├── SampleBorrowedBooksReportDataModel.cs │ │ │ └── SampleReportViewModel.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── Properties │ │ │ ├── DesignTimeResources.xaml │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── ReportingPresentationModule.cs │ │ ├── Reports │ │ │ ├── BookListReport.xaml │ │ │ ├── BookListReport.xaml.cs │ │ │ ├── BorrowedBooksReport.xaml │ │ │ └── BorrowedBooksReport.xaml.cs │ │ └── Views │ │ │ ├── ReportView.xaml │ │ │ └── ReportView.xaml.cs │ ├── BookLibrary.docx │ └── Directory.Build.props ├── InformationManager │ ├── AddressBook.Interfaces │ │ ├── AddressBook.Interfaces.csproj │ │ ├── Applications │ │ │ └── IAddressBookService.cs │ │ └── Domain │ │ │ └── ContactDto.cs │ ├── AddressBook.Modules.Applications.Test │ │ ├── AddressBook.Modules.Applications.Test.csproj │ │ ├── AddressBookTest.cs │ │ ├── Controllers │ │ │ ├── ContactControllerTest.cs │ │ │ ├── ModuleControllerTest.cs │ │ │ └── SelectContactControllerTest.cs │ │ ├── DtoFactoryTest.cs │ │ ├── GlobalSuppressions.cs │ │ ├── MockAddressBookPresentationModule.cs │ │ ├── SampleData │ │ │ └── SampleDataProviderTest.cs │ │ ├── ViewModels │ │ │ ├── ContactLayoutViewModelTest.cs │ │ │ ├── ContactListViewModelTest.cs │ │ │ ├── ContactViewModelTest.cs │ │ │ └── SelectContactViewModelTest.cs │ │ └── Views │ │ │ ├── MockContactLayoutView.cs │ │ │ ├── MockContactListView.cs │ │ │ ├── MockContactView.cs │ │ │ └── MockSelectContactView.cs │ ├── AddressBook.Modules.Applications │ │ ├── AddressBook.Modules.Applications.csproj │ │ ├── AddressBookApplicationsModule.cs │ │ ├── Controllers │ │ │ ├── ContactController.cs │ │ │ ├── ModuleController.cs │ │ │ └── SelectContactController.cs │ │ ├── DtoFactory.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── SampleData │ │ │ └── SampleDataProvider.cs │ │ ├── ViewModels │ │ │ ├── ContactLayoutViewModel.cs │ │ │ ├── ContactListViewModel.cs │ │ │ ├── ContactViewModel.cs │ │ │ └── SelectContactViewModel.cs │ │ └── Views │ │ │ ├── IContactLayoutView.cs │ │ │ ├── IContactListView.cs │ │ │ ├── IContactView.cs │ │ │ └── ISelectContactView.cs │ ├── AddressBook.Modules.Domain.Test │ │ ├── AddressBook.Modules.Domain.Test.csproj │ │ ├── AddressBookRootTest.cs │ │ ├── AddressTest.cs │ │ └── ContactTest.cs │ ├── AddressBook.Modules.Domain │ │ ├── Address.cs │ │ ├── AddressBook.Modules.Domain.csproj │ │ ├── AddressBookRoot.cs │ │ ├── Contact.cs │ │ ├── GlobalSuppressions.cs │ │ └── Log.cs │ ├── AddressBook.Modules.Presentation │ │ ├── AddressBook.Modules.Presentation.csproj │ │ ├── AddressBookPresentationModule.cs │ │ ├── DesignData │ │ │ ├── SampleContactLayoutViewModel.cs │ │ │ ├── SampleContactListViewModel.cs │ │ │ ├── SampleContactViewModel.cs │ │ │ └── SampleSelectContactViewModel.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── Properties │ │ │ └── DesignTimeResources.xaml │ │ └── Views │ │ │ ├── ContactLayoutView.xaml │ │ │ ├── ContactLayoutView.xaml.cs │ │ │ ├── ContactListView.xaml │ │ │ ├── ContactListView.xaml.cs │ │ │ ├── ContactView.xaml │ │ │ ├── ContactView.xaml.cs │ │ │ ├── SelectContactWindow.xaml │ │ │ └── SelectContactWindow.xaml.cs │ ├── Assembler │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assembler.csproj │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ └── Properties │ │ │ ├── AppConfig.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── Common.Applications.Test │ │ ├── ApplicationsTest.cs │ │ ├── Common.Applications.Test.csproj │ │ ├── GlobalSuppressions.cs │ │ └── MockCommonPresentationModule.cs │ ├── Common.Applications │ │ ├── Common.Applications.csproj │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ └── Services │ │ │ ├── AppInfo.cs │ │ │ └── IPresentationService.cs │ ├── Common.Domain.Test │ │ ├── Common.Domain.Test.csproj │ │ └── DomainTest.cs │ ├── Common.Presentation │ │ ├── Common.Presentation.csproj │ │ ├── CommonPresentationModule.cs │ │ ├── Controls │ │ │ └── SearchBox.cs │ │ ├── Converters │ │ │ └── TargetStringEmptyValueConverter.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── DesignTimeResources.xaml │ │ ├── Resources │ │ │ ├── ControlResources.xaml │ │ │ ├── ImageResources.xaml │ │ │ ├── Images │ │ │ │ └── InformationManager.ico │ │ │ ├── LayoutResources.xaml │ │ │ └── ToolBarResources.xaml │ │ └── Themes │ │ │ ├── Generic.xaml │ │ │ └── Generic │ │ │ └── SearchBox.xaml │ ├── Directory.Build.props │ ├── EmailClient.Modules.Applications.Test │ │ ├── Controllers │ │ │ ├── EditEmailAccountControllerTest.cs │ │ │ ├── EmailAccountsControllerTest.cs │ │ │ ├── EmailFolderControllerTest.cs │ │ │ ├── ModuleControllerTest.cs │ │ │ └── NewEmailControllerTest.cs │ │ ├── EmailClient.Modules.Applications.Test.csproj │ │ ├── EmailClientTest.cs │ │ ├── GlobalSuppressions.cs │ │ ├── MockEmailClientPresentationModule.cs │ │ ├── SampleData │ │ │ └── SampleDataProviderTest.cs │ │ ├── Services │ │ │ └── MockAddressBookService.cs │ │ ├── ViewModels │ │ │ ├── BasicEmailAccountViewModelTest.cs │ │ │ ├── EditEmailAccountViewModelTest.cs │ │ │ ├── EmailAccountsViewModelTest.cs │ │ │ ├── EmailLayoutViewModelTest.cs │ │ │ ├── EmailListViewModelTest.cs │ │ │ ├── EmailViewModelTest.cs │ │ │ ├── NewEmailViewModelTest.cs │ │ │ └── Pop3SettingsViewModelTest.cs │ │ └── Views │ │ │ ├── MockBasicEmailAccountView.cs │ │ │ ├── MockEditEmailAccountView.cs │ │ │ ├── MockEmailAccountsView.cs │ │ │ ├── MockEmailLayoutView.cs │ │ │ ├── MockEmailListView.cs │ │ │ ├── MockEmailView.cs │ │ │ ├── MockExchangeSettingsView.cs │ │ │ ├── MockNewEmailView.cs │ │ │ └── MockPop3SettingsView.cs │ ├── EmailClient.Modules.Applications │ │ ├── Controllers │ │ │ ├── EditEmailAccountController.cs │ │ │ ├── EmailAccountsController.cs │ │ │ ├── EmailFolderController.cs │ │ │ ├── ModuleController.cs │ │ │ └── NewEmailController.cs │ │ ├── EmailClient.Modules.Applications.csproj │ │ ├── EmailClientApplicationsModule.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── SampleData │ │ │ └── SampleDataProvider.cs │ │ ├── ViewModels │ │ │ ├── BasicEmailAccountViewModel.cs │ │ │ ├── EditEmailAccountViewModel.cs │ │ │ ├── EmailAccountsViewModel.cs │ │ │ ├── EmailLayoutViewModel.cs │ │ │ ├── EmailListViewModel.cs │ │ │ ├── EmailViewModel.cs │ │ │ ├── ExchangeSettingsViewModel.cs │ │ │ ├── NewEmailViewModel.cs │ │ │ └── Pop3SettingsViewModel.cs │ │ └── Views │ │ │ ├── IBasicEmailAccountView.cs │ │ │ ├── IEditEmailAccountView.cs │ │ │ ├── IEmailAccountsView.cs │ │ │ ├── IEmailLayoutView.cs │ │ │ ├── IEmailListView.cs │ │ │ ├── IEmailView.cs │ │ │ ├── IExchangeSettingsView.cs │ │ │ ├── INewEmailView.cs │ │ │ └── IPop3SettingsView.cs │ ├── EmailClient.Modules.Domain.Test │ │ ├── AccountSettings │ │ │ ├── ExchangeSettingsTest.cs │ │ │ ├── Pop3SettingsTest.cs │ │ │ └── UserCreditsTest.cs │ │ ├── EmailClient.Modules.Domain.Test.csproj │ │ └── Emails │ │ │ ├── EmailAccountTest.cs │ │ │ ├── EmailClientRootTest.cs │ │ │ ├── EmailFolderTest.cs │ │ │ ├── EmailTest.cs │ │ │ └── MockEmailDeletionService.cs │ ├── EmailClient.Modules.Domain │ │ ├── AccountSettings │ │ │ ├── EmailAccountSettings.cs │ │ │ ├── ExchangeSettings.cs │ │ │ ├── Pop3Settings.cs │ │ │ └── UserCredits.cs │ │ ├── EmailClient.Modules.Domain.csproj │ │ ├── Emails │ │ │ ├── Email.cs │ │ │ ├── EmailAccount.cs │ │ │ ├── EmailClientRoot.cs │ │ │ ├── EmailFolder.cs │ │ │ ├── EmailType.cs │ │ │ └── IEmailDeletionService.cs │ │ ├── GlobalSuppressions.cs │ │ └── Log.cs │ ├── EmailClient.Modules.Presentation.Test │ │ ├── Converters │ │ │ └── StringCollectionToStringConverterTest.cs │ │ └── EmailClient.Modules.Presentation.Test.csproj │ ├── EmailClient.Modules.Presentation │ │ ├── Converters │ │ │ └── StringCollectionToStringConverter.cs │ │ ├── DesignData │ │ │ ├── SampleBasicEmailAccountViewModel.cs │ │ │ ├── SampleEditEmailAccountViewModel.cs │ │ │ ├── SampleEmailAccountsViewModel.cs │ │ │ ├── SampleEmailLayoutViewModel.cs │ │ │ ├── SampleEmailListViewModel.cs │ │ │ ├── SampleEmailViewModel.cs │ │ │ ├── SampleExchangeSettingsViewModel.cs │ │ │ ├── SampleNewEmailViewModel.cs │ │ │ └── SamplePop3SettingsViewModel.cs │ │ ├── EmailClient.Modules.Presentation.csproj │ │ ├── EmailClientPresentationModule.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log.cs │ │ ├── Properties │ │ │ └── DesignTimeResources.xaml │ │ ├── Selectors │ │ │ └── EmailItemTemplateSelector.cs │ │ └── Views │ │ │ ├── BasicEmailAccountView.xaml │ │ │ ├── BasicEmailAccountView.xaml.cs │ │ │ ├── EditEmailAccountWindow.xaml │ │ │ ├── EditEmailAccountWindow.xaml.cs │ │ │ ├── EmailAccountsWindow.xaml │ │ │ ├── EmailAccountsWindow.xaml.cs │ │ │ ├── EmailLayoutView.xaml │ │ │ ├── EmailLayoutView.xaml.cs │ │ │ ├── EmailListView.xaml │ │ │ ├── EmailListView.xaml.cs │ │ │ ├── EmailView.xaml │ │ │ ├── EmailView.xaml.cs │ │ │ ├── ExchangeSettingsView.xaml │ │ │ ├── ExchangeSettingsView.xaml.cs │ │ │ ├── NewEmailWindow.xaml │ │ │ ├── NewEmailWindow.xaml.cs │ │ │ ├── Pop3SettingsView.xaml │ │ │ └── Pop3SettingsView.xaml.cs │ ├── InformationManager.docx │ ├── Infrastructure.Interfaces │ │ ├── Applications │ │ │ ├── IDocumentService.cs │ │ │ ├── INavigationNode.cs │ │ │ ├── INavigationService.cs │ │ │ ├── IShellService.cs │ │ │ └── ToolBarCommand.cs │ │ ├── GlobalSuppressions.cs │ │ └── Infrastructure.Interfaces.csproj │ ├── Infrastructure.Modules.Applications.Test │ │ ├── Controllers │ │ │ └── ModuleControllerTest.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Infrastructure.Modules.Applications.Test.csproj │ │ ├── InfrastructureTest.cs │ │ ├── MockInfrastructurePresentationModule.cs │ │ ├── Services │ │ │ ├── MockDocumentService.cs │ │ │ ├── MockSystemService.cs │ │ │ └── NavigationServiceTest.cs │ │ ├── ViewModels │ │ │ └── ShellViewModelTest.cs │ │ └── Views │ │ │ └── MockShellView.cs │ ├── Infrastructure.Modules.Applications │ │ ├── Controllers │ │ │ └── ModuleController.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Infrastructure.Modules.Applications.csproj │ │ ├── InfrastructureApplicationsModule.cs │ │ ├── Log.cs │ │ ├── Properties │ │ │ └── AppSettings.cs │ │ ├── Services │ │ │ ├── ISystemService.cs │ │ │ ├── NavigationNode.cs │ │ │ └── NavigationService.cs │ │ ├── ViewModels │ │ │ └── ShellViewModel.cs │ │ └── Views │ │ │ └── IShellView.cs │ ├── Infrastructure.Modules.Presentation.Test │ │ ├── Converters │ │ │ └── ItemCountToStringConverterTest.cs │ │ ├── Infrastructure.Modules.Presentation.Test.csproj │ │ └── Services │ │ │ └── DocumentServiceTest.cs │ └── Infrastructure.Modules.Presentation │ │ ├── Converters │ │ └── ItemCountToStringConverter.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Infrastructure.Modules.Presentation.csproj │ │ ├── InfrastructurePresentationModule.cs │ │ ├── Log.cs │ │ ├── Properties │ │ └── DesignTimeResources.xaml │ │ ├── Services │ │ ├── DocumentService.cs │ │ ├── PresentationService.cs │ │ └── SystemService.cs │ │ └── Views │ │ ├── ShellWindow.xaml │ │ └── ShellWindow.xaml.cs ├── Localization │ ├── LocalizationSample.docx │ └── LocalizationSample │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Domain │ │ └── Person.cs │ │ ├── GlobalSuppressions.cs │ │ ├── LocalizationSample.csproj │ │ ├── Presentation │ │ ├── ShellWindow.xaml │ │ └── ShellWindow.xaml.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.de.resx │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── Writer │ ├── Directory.Build.props │ ├── Writer.Applications.Test │ ├── ApplicationsTest.cs │ ├── Controllers │ │ ├── FileControllerTest.cs │ │ ├── ModuleControllerTest.cs │ │ ├── PrintControllerTest.cs │ │ └── RichTextDocumentControllerTest.cs │ ├── Documents │ │ ├── DocumentTypeTest.cs │ │ ├── MockRichTextDocument.cs │ │ ├── MockRichTextDocumentType.cs │ │ └── MockXpsExportDocumentType.cs │ ├── GlobalSuppressions.cs │ ├── MockPresentationModule.cs │ ├── Services │ │ ├── FileServiceTest.cs │ │ ├── MockPrintDialogService.cs │ │ ├── MockSystemService.cs │ │ └── ShellServiceTest.cs │ ├── ViewModels │ │ ├── MainViewModelTest.cs │ │ ├── PrintPreviewViewModelTest.cs │ │ ├── RichTextViewModelTest.cs │ │ ├── SaveChangesViewModelTest.cs │ │ ├── ShellViewModelTest.cs │ │ ├── StartViewModelTest.cs │ │ └── ZoomViewModelTest.cs │ ├── Views │ │ ├── MockMainView.cs │ │ ├── MockPrintPreviewView.cs │ │ ├── MockRichTextView.cs │ │ ├── MockSaveChangesView.cs │ │ ├── MockShellView.cs │ │ └── MockStartView.cs │ └── Writer.Applications.Test.csproj │ ├── Writer.Applications │ ├── ApplicationsModule.cs │ ├── Controllers │ │ ├── DocumentController.cs │ │ ├── FileController.cs │ │ ├── ModuleController.cs │ │ ├── PrintController.cs │ │ └── RichTextDocumentController.cs │ ├── Documents │ │ ├── Document.cs │ │ ├── DocumentType.cs │ │ ├── IDocument.cs │ │ ├── IDocumentType.cs │ │ ├── IRichTextDocument.cs │ │ ├── IRichTextDocumentType.cs │ │ └── IXpsExportDocumentType.cs │ ├── GlobalSuppressions.cs │ ├── Log.cs │ ├── Properties │ │ ├── AppSettings.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.de.resx │ │ └── Resources.resx │ ├── Services │ │ ├── FileService.cs │ │ ├── IEditingCommands.cs │ │ ├── IFileService.cs │ │ ├── IPrintDialogService.cs │ │ ├── IShellService.cs │ │ ├── ISystemService.cs │ │ ├── IZoomCommands.cs │ │ └── ShellService.cs │ ├── ViewModels │ │ ├── MainViewModel.cs │ │ ├── PrintPreviewViewModel.cs │ │ ├── RichTextViewModel.cs │ │ ├── SaveChangesViewModel.cs │ │ ├── ShellViewModel.cs │ │ ├── StartViewModel.cs │ │ └── ZoomViewModel.cs │ ├── Views │ │ ├── IMainView.cs │ │ ├── IPrintPreviewView.cs │ │ ├── IRichTextView.cs │ │ ├── ISaveChangesView.cs │ │ ├── IShellView.cs │ │ └── IStartView.cs │ └── Writer.Applications.csproj │ ├── Writer.Presentation.Test │ ├── Converters │ │ ├── DoubleToZoomConverterTest.cs │ │ ├── MenuFileNameConverterTest.cs │ │ ├── PercentConverterTest.cs │ │ ├── TabFileNameConverterTest.cs │ │ └── TitleConverterTest.cs │ ├── IntegrationTest.cs │ ├── PresentationTest.cs │ ├── Services │ │ ├── RichTextDocumentTypeTest.cs │ │ └── XpsExportDocumentTypeTest.cs │ └── Writer.Presentation.Test.csproj │ ├── Writer.Presentation │ ├── App.xaml │ ├── App.xaml.cs │ ├── Converters │ │ ├── DoubleToZoomConverter.cs │ │ ├── MenuFileNameConverter.cs │ │ ├── PercentConverter.cs │ │ ├── TabFileNameConverter.cs │ │ └── TitleConverter.cs │ ├── DesignData │ │ ├── MockFileService.cs │ │ ├── MockSettingsService.cs │ │ ├── MockShellService.cs │ │ ├── MockView.cs │ │ ├── SampleMainViewModel.cs │ │ ├── SampleSaveChangesViewModel.cs │ │ ├── SampleShellViewModel.cs │ │ └── SampleStartViewModel.cs │ ├── GlobalSuppressions.cs │ ├── Log.cs │ ├── NLog.config │ ├── PresentationModule.cs │ ├── Properties │ │ ├── AppConfig.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.de.resx │ │ └── Resources.resx │ ├── Resources │ │ ├── ControlResources.xaml │ │ ├── ImageResources.xaml │ │ └── Images │ │ │ ├── Bold.png │ │ │ ├── Bullets.png │ │ │ ├── CheckSpelling.png │ │ │ ├── CheckSpellingLarge.png │ │ │ ├── CloseLarge.png │ │ │ ├── ClosePreview.png │ │ │ ├── CloseSmall.png │ │ │ ├── Copy.png │ │ │ ├── CopyLarge.png │ │ │ ├── Cut.png │ │ │ ├── DecreaseIndentation.png │ │ │ ├── Delete.png │ │ │ ├── EmptyLarge.png │ │ │ ├── FlagDe.png │ │ │ ├── FlagEn.png │ │ │ ├── Help.png │ │ │ ├── IncreaseIndentation.png │ │ │ ├── Italic.png │ │ │ ├── New.png │ │ │ ├── NewLarge.png │ │ │ ├── Numbering.png │ │ │ ├── Open.png │ │ │ ├── OpenLarge.png │ │ │ ├── Paste.png │ │ │ ├── PasteLarge.png │ │ │ ├── Pin.png │ │ │ ├── Pinned.png │ │ │ ├── Print.png │ │ │ ├── PrintLarge.png │ │ │ ├── PrintPreview.png │ │ │ ├── Redo.png │ │ │ ├── Save.png │ │ │ ├── SaveLarge.png │ │ │ ├── SelectAll.png │ │ │ ├── Underline.png │ │ │ ├── Undo.png │ │ │ ├── Writer.ico │ │ │ ├── ZoomInLarge.png │ │ │ ├── ZoomOutLarge.png │ │ │ └── ZoomPageWidth.png │ ├── Services │ │ ├── PrintDialogService.cs │ │ ├── RichTextDocument.cs │ │ ├── RichTextDocumentType.cs │ │ ├── SystemService.cs │ │ └── XpsExportDocumentType.cs │ ├── Views │ │ ├── MainView.xaml │ │ ├── MainView.xaml.cs │ │ ├── PrintPreviewView.xaml │ │ ├── PrintPreviewView.xaml.cs │ │ ├── RichTextView.xaml │ │ ├── RichTextView.xaml.cs │ │ ├── SaveChangesWindow.xaml │ │ ├── SaveChangesWindow.xaml.cs │ │ ├── ShellWindow.xaml │ │ ├── ShellWindow.xaml.cs │ │ ├── StartView.xaml │ │ └── StartView.xaml.cs │ └── Writer.Presentation.csproj │ └── Writer.docx ├── System.Waf.sln └── System.Waf ├── Directory.Build.props ├── System.Waf.Core.Test ├── Applications │ ├── ApplicationInfoTest.cs │ ├── AsyncDelegateCommandTest.cs │ ├── DelegateCommandTest.cs │ ├── RecentFileListTest.cs │ ├── RecentFileTest.cs │ ├── Services │ │ └── SettingsErrorEventArgsTest.cs │ ├── ViewModelCoreTest.cs │ └── ViewTest.cs ├── Foundation │ ├── CacheTest.cs │ ├── CollectionHelperTest.cs │ ├── ModelTest.cs │ ├── ObservableListTest.cs │ ├── ObservableListViewCoreTest.cs │ ├── ReadOnlyObservableListTest.cs │ ├── StringHelperTest.cs │ ├── SynchronizingCollectionCoreTest.cs │ ├── SynchronizingListTest.cs │ ├── TaskHelperTest.cs │ ├── ThrottledActionTest.cs │ ├── TraceSourceExtensionsTest.cs │ ├── ValidatableModelTest.cs │ ├── ValidationHelperTest.cs │ ├── WeakEventCanExecuteChangedTest.cs │ ├── WeakEventCollectionChangedTest.cs │ ├── WeakEventCollectionChangingTest.cs │ ├── WeakEventCollectionItemChangedTest.cs │ ├── WeakEventErrorsChangedTest.cs │ ├── WeakEventEventHandlerTTest.cs │ ├── WeakEventEventHandlerTest.cs │ ├── WeakEventHandlerTableTest.cs │ ├── WeakEventPropertyChangedTest.cs │ ├── WeakEventStaticEventHandlerTTest.cs │ ├── WeakEventStaticEventHandlerTest.cs │ └── WeakEventTestBase.cs ├── GlobalSuppressions.cs ├── Presentation │ └── Services │ │ └── SettingsServiceTest.cs ├── System.Waf.Core.Test.csproj └── UnitTesting │ ├── AssertExceptionTest.cs │ ├── CanExecuteChangedEventTest.cs │ ├── ExpectedExceptionTest.cs │ ├── Mocks │ └── MockViewTest.cs │ ├── PropertyChangedEventTest.cs │ ├── SequenceEqualTest.cs │ ├── UnitTestSynchronizationContextExtensionsTest.cs │ └── UnitTestSynchronizationContextTest.cs ├── System.Waf.Core ├── Applications │ ├── ApplicationInfo.cs │ ├── AsyncDelegateCommand.cs │ ├── DelegateCommand.cs │ ├── IDelegateCommand.cs │ ├── IView.cs │ ├── IViewModelCore.cs │ ├── RecentFile.cs │ ├── RecentFileList.cs │ ├── Services │ │ ├── ISettingsService.cs │ │ ├── SettingsErrorEventArgs.cs │ │ ├── SettingsServiceAction.cs │ │ └── UserSettingsBase.cs │ └── ViewModelCore.cs ├── Foundation │ ├── Cache.cs │ ├── CollectionHelper.cs │ ├── EventArgsCache.cs │ ├── INotifyCollectionChanging.cs │ ├── INotifyCollectionItemChanged.cs │ ├── IReadOnlyObservableList.cs │ ├── Model.cs │ ├── ObservableList.cs │ ├── ObservableListViewBase.cs │ ├── ObservableListViewCore.cs │ ├── ReadOnlyObservableList.cs │ ├── StringHelper.cs │ ├── SynchronizingCollectionCore.cs │ ├── SynchronizingList.cs │ ├── TaskHelper.cs │ ├── ThrottledAction.cs │ ├── TraceSourceExtensions.cs │ ├── ValidatableModel.cs │ ├── ValidationHelper.cs │ ├── WeakEvent.cs │ └── WeakEventHandlerTable.cs ├── GlobalSuppressions.cs ├── Presentation │ └── Services │ │ ├── SettingsService.cs │ │ └── SettingsServiceCore.cs └── System.Waf.Core.csproj ├── System.Waf.UnitTesting.Core ├── AssertException.cs ├── AssertHelper.cs ├── ExpectedChangedCountMode.cs ├── GlobalSuppressions.cs ├── Mocks │ ├── MockSettingsService.cs │ └── MockView.cs ├── System.Waf.UnitTesting.Core.csproj ├── UnitTestSynchronizationContext.cs └── UnitTestSynchronizationContextExtensions.cs ├── System.Waf.UnitTesting.Wpf ├── GlobalSuppressions.cs ├── Mocks │ ├── FileDialogType.cs │ ├── MefMockSettingsService.cs │ ├── MessageType.cs │ ├── MockDialogView.cs │ ├── MockFileDialogService.cs │ └── MockMessageService.cs └── System.Waf.UnitTesting.Wpf.csproj ├── System.Waf.Wpf.Test ├── Applications │ ├── GenericViewModelTest.cs │ ├── MefViewModelTest.cs │ ├── ObservableListViewTest.cs │ ├── Pop3SettingsViewModelTest.cs │ ├── Services │ │ ├── FileDialogResultTest.cs │ │ ├── FileDialogServiceExtensionsTest.cs │ │ ├── FileTypeTest.cs │ │ └── MessageServiceExtensionsTest.cs │ ├── SynchronizingCollectionTest.cs │ └── ViewHelperTest.cs ├── Foundation │ ├── DataErrorInfoExtensionsTest.cs │ └── DataErrorInfoSupportTest.cs ├── GlobalSuppressions.cs ├── Presentation │ ├── Controls │ │ └── DataGridHelperTest.cs │ ├── Converters │ │ ├── BoolToVisibilityConverterTest.cs │ │ ├── InvertBooleanConverterTest.cs │ │ ├── NullToVisibilityConverterTest.cs │ │ ├── StringFormatConverterTest.cs │ │ └── ValidationErrorsConverterTest.cs │ ├── ResourceHelperTest.cs │ ├── Resources │ │ ├── BrushResources.xaml │ │ └── LayoutResources.xaml │ ├── Services │ │ ├── FileDialogServiceTest.cs │ │ └── MessageServiceTest.cs │ └── ValidationHelperTest.cs ├── System.Waf.Wpf.Test.csproj ├── UnitTesting │ └── Mocks │ │ ├── MockDialogViewTest.cs │ │ └── MockFileDialogServiceTest.cs └── WafConfigurationTest.cs └── System.Waf.Wpf ├── Applications ├── DispatcherHelperCore.cs ├── IModuleController.cs ├── ObservableListView.cs ├── Services │ ├── FileDialogResult.cs │ ├── FileDialogServiceExtensions.cs │ ├── FileType.cs │ ├── IFileDialogService.cs │ ├── IMessageService.cs │ └── MessageServiceExtensions.cs ├── SynchronizingCollection.cs ├── ViewHelper.cs ├── ViewModel.Generic.cs └── ViewModel.cs ├── Foundation ├── DataErrorInfoExtensions.cs └── DataErrorInfoSupport.cs ├── GlobalSuppressions.cs ├── Presentation ├── Bind.cs ├── Controls │ └── DataGridHelper.cs ├── Converters │ ├── BoolToVisibilityConverter.cs │ ├── InvertBooleanConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── StringFormatConverter.cs │ └── ValidationErrorsConverter.cs ├── DispatcherHelper.cs ├── ResourceHelper.cs ├── Services │ ├── FileDialogService.cs │ ├── MefSettingsService.cs │ └── MessageService.cs ├── ValidationHelper.cs ├── ValidationReloadedTracker.cs └── ValidationTracker.cs ├── Properties └── AssemblyInfo.cs ├── System.Waf.Wpf.csproj └── WafConfiguration.cs /.github/workflows/GetBuildVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/.github/workflows/GetBuildVersion.yml -------------------------------------------------------------------------------- /.github/workflows/NewsReader.CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/.github/workflows/NewsReader.CI.yml -------------------------------------------------------------------------------- /.github/workflows/NewsReader.UITestAndroid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/.github/workflows/NewsReader.UITestAndroid.yml -------------------------------------------------------------------------------- /.github/workflows/System.Waf.CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/.github/workflows/System.Waf.CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/README.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/NewsReader.UITest/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/Directory.Build.props -------------------------------------------------------------------------------- /src/NewsReader.UITest/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/Directory.Packages.props -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest.sln -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Controls/ContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Controls/ContextMenu.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Controls/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Controls/Entry.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Controls/Popup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Controls/Popup.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Controls/SearchBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Controls/SearchBar.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Controls/YesNoPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Controls/YesNoPopup.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/NewsReader.UITest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/NewsReader.UITest.csproj -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Tests/CustomFeedServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Tests/CustomFeedServiceTest.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Tests/NewsReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Tests/NewsReaderTest.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/UITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/UITest.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Views/AddEditFeedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Views/AddEditFeedView.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Views/FeedItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Views/FeedItemView.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Views/FeedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Views/FeedView.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Views/SettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Views/SettingsView.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/NewsReader.UITest/Views/ShellWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/NewsReader.UITest/Views/ShellWindow.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.Core/ContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.Core/ContextHelper.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.Core/DeviceCollectionTraitAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.Core/DeviceCollectionTraitAttribute.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.Core/ElementHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.Core/ElementHelper.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.Core/FindHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.Core/FindHelper.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.Core/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.Core/Log.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.Core/RectangleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.Core/RectangleHelper.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.Core/UITest.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.Core/UITest.Core.csproj -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.Core/UITestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.Core/UITestBase.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.FeedService/FeedWebApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.FeedService/FeedWebApp.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.FeedService/SyndicationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.FeedService/SyndicationData.cs -------------------------------------------------------------------------------- /src/NewsReader.UITest/UITest.FeedService/UITest.FeedService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader.UITest/UITest.FeedService/UITest.FeedService.csproj -------------------------------------------------------------------------------- /src/NewsReader/CodeCoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/CodeCoverage.runsettings -------------------------------------------------------------------------------- /src/NewsReader/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/Directory.Build.props -------------------------------------------------------------------------------- /src/NewsReader/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/Directory.Packages.props -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/ContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/ContextExtensions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Controllers/AppControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Controllers/AppControllerTest.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/MockPresentationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/MockPresentationModule.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/NewsReader.Applications.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/NewsReader.Applications.Test.csproj -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Services/MockAppInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Services/MockAppInfoService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Services/MockDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Services/MockDataService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Services/MockLauncherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Services/MockLauncherService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Services/MockMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Services/MockMessageService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Services/MockNetworkInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Services/MockNetworkInfoService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Services/MockSyndicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Services/MockSyndicationService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Services/MockWebStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Services/MockWebStorageService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/TestBase.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Views/MockFeedView .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Views/MockFeedView .cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Views/MockSettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Views/MockSettingsView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications.Test/Views/MockShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications.Test/Views/MockShellView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/ApplicationsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/ApplicationsModule.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Controllers/AppController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Controllers/AppController.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Controllers/DataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Controllers/DataController.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Controllers/FeedsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Controllers/FeedsController.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Controllers/IAppController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Controllers/IAppController.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Controllers/SettingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Controllers/SettingsController.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/DataModels/DisplayItemLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/DataModels/DisplayItemLifetime.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/DataModels/DisplayMaxItemsLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/DataModels/DisplayMaxItemsLimit.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/DataModels/NavigationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/DataModels/NavigationItem.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Log.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/LogExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/LogExtensions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/NewsReader.Applications.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/NewsReader.Applications.csproj -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Properties/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Properties/AppSettings.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Properties/Resources.resx -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/IAppInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/IAppInfoService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/IDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/IDataService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/ILauncherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/ILauncherService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/ILocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/ILocalizationService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/IMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/IMessageService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/INavigationService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/INetworkInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/INetworkInfoService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/ISyndicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/ISyndicationService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/IWebStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/IWebStorageService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Services/MessageServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Services/MessageServiceExtensions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/ViewModels/AddEditFeedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/ViewModels/AddEditFeedViewModel.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/ViewModels/FeedItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/ViewModels/FeedItemViewModel.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/ViewModels/FeedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/ViewModels/FeedViewModel.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Views/IAddEditFeedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Views/IAddEditFeedView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Views/IFeedItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Views/IFeedItemView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Views/IFeedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Views/IFeedView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Views/ISettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Views/ISettingsView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Applications/Views/IShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Applications/Views/IShellView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain.Test/FeedItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain.Test/FeedItemTest.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain.Test/FeedManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain.Test/FeedManagerTest.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain.Test/FeedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain.Test/FeedTest.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain.Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain.Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain.Test/NewsReader.Domain.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain.Test/NewsReader.Domain.Test.csproj -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain.Test/SerializerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain.Test/SerializerHelper.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/Feed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/Feed.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/FeedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/FeedItem.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/FeedManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/FeedManager.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/Foundation/ObservableGroupedListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/Foundation/ObservableGroupedListView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/Foundation/ObservableGroupingView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/Foundation/ObservableGroupingView.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/IDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/IDataManager.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/Log.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Domain/NewsReader.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Domain/NewsReader.Domain.csproj -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Log.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/MauiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/MauiModule.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/MauiProgram.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/NewsReader.MauiSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/NewsReader.MauiSystem.csproj -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Android/AndroidModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Android/AndroidModule.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/App.manifest -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/WindowsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/Windows/WindowsModule.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/IosModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/IosModule.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/Services/LocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Platforms/iOS/Services/LocalizationService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Resources/Fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Resources/Fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.MauiSystem/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.MauiSystem/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation.Test/Converters/NullToBoolConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation.Test/Converters/NullToBoolConverterTest.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation.Test/NewsReader.Presentation.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation.Test/NewsReader.Presentation.Test.csproj -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/App.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/App.xaml.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Converters/ErrorsToMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Converters/ErrorsToMessageConverter.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Converters/LocalizeDisplayItemLifetimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Converters/LocalizeDisplayItemLifetimeConverter.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Converters/LocalizeDisplayMaxItemsLimitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Converters/LocalizeDisplayMaxItemsLimitConverter.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Converters/MarkAsReadConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Converters/MarkAsReadConverter.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Converters/NullToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Converters/NullToBoolConverter.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Log.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/NewsReader.Presentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/NewsReader.Presentation.csproj -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/PresentationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/PresentationModule.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Properties/Resources.resx -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/AppInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/AppInfoService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/AppTraceTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/AppTraceTarget.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/DataService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/GraphApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/GraphApi.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/LauncherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/LauncherService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/MessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/MessageService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/MsalAuthorizationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/MsalAuthorizationHandler.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/NetworkInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/NetworkInfoService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/SyndicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/SyndicationService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Services/WebStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Services/WebStorageService.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/AddEditFeedView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/AddEditFeedView.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/AddEditFeedView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/AddEditFeedView.xaml.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/FeedItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/FeedItemView.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/FeedItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/FeedItemView.xaml.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/FeedView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/FeedView.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/FeedView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/FeedView.xaml.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/SettingsView.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/SettingsView.xaml.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/ShellView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/ShellView.xaml -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.Presentation/Views/ShellView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.Presentation/Views/ShellView.xaml.cs -------------------------------------------------------------------------------- /src/NewsReader/NewsReader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NewsReader/NewsReader.sln -------------------------------------------------------------------------------- /src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/NuGet.config -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/BookLibrary.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/BookLibrary.Test.csproj -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Tests/AddressBookTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Tests/AddressBookTest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Tests/BookLibraryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Tests/BookLibraryTest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Tests/GeneralTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Tests/GeneralTest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Tests/ReportingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Tests/ReportingTest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/UITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/UITest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Views/BookListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Views/BookListView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Views/BookView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Views/BookView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Views/LendToWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Views/LendToWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Views/PersonListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Views/PersonListView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Views/PersonView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Views/PersonView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Views/ReportView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Views/ReportView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/BookLibrary.Test/Views/ShellWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/BookLibrary.Test/Views/ShellWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Directory.Build.props -------------------------------------------------------------------------------- /src/Samples.UITest/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Directory.Packages.props -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Controls/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Controls/Document.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Controls/SearchBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Controls/SearchBox.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/InformationManager.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/InformationManager.Test.csproj -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Tests/AddressBookTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Tests/AddressBookTest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Tests/EmailTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Tests/EmailTest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Tests/GeneralTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Tests/GeneralTest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/UITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/UITest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/BasicEmailAccountView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/BasicEmailAccountView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/ContactLayoutView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/ContactLayoutView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/ContactListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/ContactListView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/ContactView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/ContactView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/EditEmailAccountWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/EditEmailAccountWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/EmailAccountsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/EmailAccountsWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/EmailLayoutView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/EmailLayoutView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/EmailListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/EmailListView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/EmailView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/EmailView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/ExchangeSettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/ExchangeSettingsView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/NewEmailWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/NewEmailWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/Pop3SettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/Pop3SettingsView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/SelectContactWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/SelectContactWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/InformationManager.Test/Views/ShellWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/InformationManager.Test/Views/ShellWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Samples.UITest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Samples.UITest.sln -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/Controls/HyperlinkGridCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/Controls/HyperlinkGridCell.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/Controls/TextGridCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/Controls/TextGridCell.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/LaunchArgumentsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/LaunchArgumentsBase.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/SystemViews/LegacyPrintDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/SystemViews/LegacyPrintDialog.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/SystemViews/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/SystemViews/MessageBox.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/SystemViews/OpenFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/SystemViews/OpenFileDialog.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/SystemViews/PrintDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/SystemViews/PrintDialog.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/SystemViews/SaveFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/SystemViews/SaveFileDialog.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/UIAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/UIAssert.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/UITest.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/UITest.Core.csproj -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/UITestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/UITestBase.cs -------------------------------------------------------------------------------- /src/Samples.UITest/UITest.Core/UITestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/UITest.Core/UITestHelper.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Writer.Test/Tests/WriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Writer.Test/Tests/WriterTest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Writer.Test/UITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Writer.Test/UITest.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Writer.Test/Views/RichTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Writer.Test/Views/RichTextView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Writer.Test/Views/SaveChangesWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Writer.Test/Views/SaveChangesWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Writer.Test/Views/ShellWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Writer.Test/Views/ShellWindow.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Writer.Test/Views/StartView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Writer.Test/Views/StartView.cs -------------------------------------------------------------------------------- /src/Samples.UITest/Writer.Test/Writer.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/Samples.UITest/Writer.Test/Writer.Test.csproj -------------------------------------------------------------------------------- /src/System.Waf/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Changelog.txt -------------------------------------------------------------------------------- /src/System.Waf/CodeCoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/CodeCoverage.runsettings -------------------------------------------------------------------------------- /src/System.Waf/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Directory.Build.props -------------------------------------------------------------------------------- /src/System.Waf/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Directory.Packages.props -------------------------------------------------------------------------------- /src/System.Waf/NullableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/NullableAttributes.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications.Test/ApplicationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications.Test/ApplicationsTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/ApplicationsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/ApplicationsModule.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Properties/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Properties/AppSettings.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Properties/Resources.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Services/EntityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Services/EntityService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Services/IEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Services/IEmailService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Services/IShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Services/IShellService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Services/ShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Services/ShellService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IBookListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IBookListView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IBookView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IBookView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/ILendToView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/ILendToView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IPersonListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IPersonListView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IPersonView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IPersonView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/Views/IShellView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain.Test/BookTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain.Test/BookTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain.Test/PersonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain.Test/PersonTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Book.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Language.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Person.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Properties/Resources.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Resources/BookLibrary.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/Resources/BookLibrary.db -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/App.config -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/App.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/App.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Data/BookMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Data/BookMapping.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Data/PersonMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Data/PersonMapping.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/PresentationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/PresentationModule.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Properties/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Properties/AppConfig.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Properties/Resources.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Copy.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Cut.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Redo.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Save.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Resources/Images/Undo.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Services/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Services/EmailService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/BookListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/BookListView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/BookView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/BookView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/BookView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/BookView.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/LendToWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/LendToWindow.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/PersonListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/PersonListView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/PersonView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/PersonView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/PersonView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/PersonView.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/ShellWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/ShellWindow.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/ShellWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/Views/ShellWindow.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications.Test/ReportingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications.Test/ReportingTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/Reports/IReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/Reports/IReport.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/Views/IReportView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/Views/IReportView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/Views/ReportView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/Views/ReportView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/BookLibrary.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/BookLibrary.docx -------------------------------------------------------------------------------- /src/System.Waf/Samples/BookLibrary/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/BookLibrary/Directory.Build.props -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Interfaces/Domain/ContactDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Interfaces/Domain/ContactDto.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications/DtoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications/DtoFactory.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain.Test/AddressTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain.Test/AddressTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain.Test/ContactTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain.Test/ContactTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/Address.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/AddressBookRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/AddressBookRoot.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/Contact.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/AddressBook.Modules.Presentation/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Presentation/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/App.config -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/App.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/App.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/Assembler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/Assembler.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/Properties/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/Properties/AppConfig.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Assembler/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Assembler/Properties/Settings.settings -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Applications.Test/ApplicationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Applications.Test/ApplicationsTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Applications.Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Applications.Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Applications/Common.Applications.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Applications/Common.Applications.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Applications/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Applications/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Applications/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Applications/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Applications/Services/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Applications/Services/AppInfo.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Domain.Test/Common.Domain.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Domain.Test/Common.Domain.Test.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Domain.Test/DomainTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Domain.Test/DomainTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Common.Presentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Common.Presentation.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/CommonPresentationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/CommonPresentationModule.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Controls/SearchBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Controls/SearchBox.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Resources/ControlResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Resources/ControlResources.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Resources/ImageResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Resources/ImageResources.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Resources/LayoutResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Resources/LayoutResources.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Resources/ToolBarResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Resources/ToolBarResources.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Common.Presentation/Themes/Generic/SearchBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Common.Presentation/Themes/Generic/SearchBox.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Directory.Build.props -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain.Test/Emails/EmailTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain.Test/Emails/EmailTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Emails/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Emails/Email.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Emails/EmailAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Emails/EmailAccount.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Emails/EmailFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Emails/EmailFolder.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Emails/EmailType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Emails/EmailType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/InformationManager.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/InformationManager.docx -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Infrastructure.Interfaces/GlobalSuppressions.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample.docx -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/App.config -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/App.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/App.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Domain/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Domain/Person.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/LocalizationSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/LocalizationSample.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Presentation/ShellWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Presentation/ShellWindow.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Presentation/ShellWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Presentation/ShellWindow.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Properties/Resources.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Localization/LocalizationSample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Localization/LocalizationSample/Properties/Settings.settings -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Directory.Build.props -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/ApplicationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/ApplicationsTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Controllers/FileControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Controllers/FileControllerTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Controllers/ModuleControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Controllers/ModuleControllerTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Controllers/PrintControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Controllers/PrintControllerTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Documents/DocumentTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Documents/DocumentTypeTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Documents/MockRichTextDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Documents/MockRichTextDocument.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Documents/MockRichTextDocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Documents/MockRichTextDocumentType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Documents/MockXpsExportDocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Documents/MockXpsExportDocumentType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/MockPresentationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/MockPresentationModule.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Services/FileServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Services/FileServiceTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Services/MockPrintDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Services/MockPrintDialogService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Services/MockSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Services/MockSystemService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Services/ShellServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Services/ShellServiceTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/MainViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/MainViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/RichTextViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/RichTextViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/SaveChangesViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/SaveChangesViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/ShellViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/ShellViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/StartViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/StartViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/ZoomViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/ViewModels/ZoomViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockMainView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockPrintPreviewView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockPrintPreviewView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockRichTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockRichTextView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockSaveChangesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockSaveChangesView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockShellView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockStartView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Views/MockStartView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications.Test/Writer.Applications.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications.Test/Writer.Applications.Test.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/ApplicationsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/ApplicationsModule.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Controllers/DocumentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Controllers/DocumentController.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Controllers/FileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Controllers/FileController.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Controllers/ModuleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Controllers/ModuleController.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Controllers/PrintController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Controllers/PrintController.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Controllers/RichTextDocumentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Controllers/RichTextDocumentController.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Documents/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Documents/Document.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Documents/DocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Documents/DocumentType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Documents/IDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Documents/IDocument.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Documents/IDocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Documents/IDocumentType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Documents/IRichTextDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Documents/IRichTextDocument.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Documents/IRichTextDocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Documents/IRichTextDocumentType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Documents/IXpsExportDocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Documents/IXpsExportDocumentType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Properties/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Properties/AppSettings.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Properties/Resources.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Services/FileService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Services/IEditingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Services/IEditingCommands.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Services/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Services/IFileService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Services/IPrintDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Services/IPrintDialogService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Services/IShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Services/IShellService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Services/ISystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Services/ISystemService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Services/IZoomCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Services/IZoomCommands.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Services/ShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Services/ShellService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/PrintPreviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/PrintPreviewViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/RichTextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/RichTextViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/SaveChangesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/SaveChangesViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/StartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/StartViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/ZoomViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/ViewModels/ZoomViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Views/IMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Views/IMainView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Views/IPrintPreviewView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Views/IPrintPreviewView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Views/IRichTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Views/IRichTextView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Views/ISaveChangesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Views/ISaveChangesView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Views/IShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Views/IShellView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Views/IStartView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Views/IStartView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Applications/Writer.Applications.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Applications/Writer.Applications.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation.Test/Converters/PercentConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Converters/PercentConverterTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation.Test/Converters/TabFileNameConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Converters/TabFileNameConverterTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation.Test/Converters/TitleConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Converters/TitleConverterTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation.Test/IntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation.Test/IntegrationTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation.Test/PresentationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation.Test/PresentationTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation.Test/Services/RichTextDocumentTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Services/RichTextDocumentTypeTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation.Test/Services/XpsExportDocumentTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Services/XpsExportDocumentTypeTest.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation.Test/Writer.Presentation.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Writer.Presentation.Test.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/App.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/App.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Converters/DoubleToZoomConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Converters/DoubleToZoomConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Converters/MenuFileNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Converters/MenuFileNameConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Converters/PercentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Converters/PercentConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Converters/TabFileNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Converters/TabFileNameConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Converters/TitleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Converters/TitleConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/MockFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/MockFileService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/MockSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/MockSettingsService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/MockShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/MockShellService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/MockView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/MockView.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/SampleMainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/SampleMainViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/SampleSaveChangesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/SampleSaveChangesViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/SampleShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/SampleShellViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/SampleStartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/DesignData/SampleStartViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Log.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/NLog.config -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/PresentationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/PresentationModule.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Properties/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Properties/AppConfig.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Properties/Resources.resx -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/ControlResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/ControlResources.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/ImageResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/ImageResources.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Bold.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Bullets.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CheckSpelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CheckSpelling.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CheckSpellingLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CheckSpellingLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CloseLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CloseLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/ClosePreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/ClosePreview.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CloseSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CloseSmall.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Copy.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CopyLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/CopyLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Cut.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/DecreaseIndentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/DecreaseIndentation.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Delete.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/EmptyLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/EmptyLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/FlagDe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/FlagDe.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/FlagEn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/FlagEn.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Help.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/IncreaseIndentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/IncreaseIndentation.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Italic.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/New.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/NewLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/NewLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Numbering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Numbering.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Open.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/OpenLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/OpenLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Paste.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/PasteLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/PasteLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Pin.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Pinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Pinned.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Print.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/PrintLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/PrintLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/PrintPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/PrintPreview.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Redo.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Save.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/SaveLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/SaveLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/SelectAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/SelectAll.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Underline.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Undo.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Writer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/Writer.ico -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/ZoomInLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/ZoomInLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/ZoomOutLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/ZoomOutLarge.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/ZoomPageWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Resources/Images/ZoomPageWidth.png -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Services/PrintDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Services/PrintDialogService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Services/RichTextDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Services/RichTextDocument.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Services/RichTextDocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Services/RichTextDocumentType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Services/SystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Services/SystemService.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Services/XpsExportDocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Services/XpsExportDocumentType.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/MainView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/PrintPreviewView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/PrintPreviewView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/PrintPreviewView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/PrintPreviewView.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/RichTextView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/RichTextView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/RichTextView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/RichTextView.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/SaveChangesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/SaveChangesWindow.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/SaveChangesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/SaveChangesWindow.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/ShellWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/ShellWindow.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/ShellWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/ShellWindow.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/StartView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/StartView.xaml -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Views/StartView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Views/StartView.xaml.cs -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.Presentation/Writer.Presentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.Presentation/Writer.Presentation.csproj -------------------------------------------------------------------------------- /src/System.Waf/Samples/Writer/Writer.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/Samples/Writer/Writer.docx -------------------------------------------------------------------------------- /src/System.Waf/System.Waf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf.sln -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/Directory.Build.props -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/ApplicationInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/ApplicationInfoTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/AsyncDelegateCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/AsyncDelegateCommandTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/DelegateCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/DelegateCommandTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/RecentFileListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/RecentFileListTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/RecentFileTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/RecentFileTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/ViewModelCoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/ViewModelCoreTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/ViewTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Applications/ViewTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/CacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/CacheTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/CollectionHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/CollectionHelperTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ObservableListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ObservableListTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ObservableListViewCoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ObservableListViewCoreTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ReadOnlyObservableListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ReadOnlyObservableListTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/StringHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/StringHelperTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/SynchronizingCollectionCoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/SynchronizingCollectionCoreTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/SynchronizingListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/SynchronizingListTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/TaskHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/TaskHelperTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ThrottledActionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ThrottledActionTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/TraceSourceExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/TraceSourceExtensionsTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ValidatableModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ValidatableModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ValidationHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/ValidationHelperTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventCanExecuteChangedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventCanExecuteChangedTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventCollectionChangedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventCollectionChangedTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventCollectionChangingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventCollectionChangingTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventErrorsChangedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventErrorsChangedTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventEventHandlerTTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventEventHandlerTTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventEventHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventEventHandlerTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventHandlerTableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventHandlerTableTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventPropertyChangedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventPropertyChangedTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventStaticEventHandlerTTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventStaticEventHandlerTTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventStaticEventHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventStaticEventHandlerTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Foundation/WeakEventTestBase.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/Presentation/Services/SettingsServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/Presentation/Services/SettingsServiceTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/System.Waf.Core.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/System.Waf.Core.Test.csproj -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/AssertExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/AssertExceptionTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/CanExecuteChangedEventTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/CanExecuteChangedEventTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/ExpectedExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/ExpectedExceptionTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/Mocks/MockViewTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/Mocks/MockViewTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/PropertyChangedEventTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/PropertyChangedEventTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/SequenceEqualTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core.Test/UnitTesting/SequenceEqualTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/ApplicationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/ApplicationInfo.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/AsyncDelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/AsyncDelegateCommand.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/DelegateCommand.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/IDelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/IDelegateCommand.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/IView.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/IViewModelCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/IViewModelCore.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/RecentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/RecentFile.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/RecentFileList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/RecentFileList.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/Services/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/Services/ISettingsService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/Services/SettingsErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/Services/SettingsErrorEventArgs.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/Services/SettingsServiceAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/Services/SettingsServiceAction.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/Services/UserSettingsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/Services/UserSettingsBase.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Applications/ViewModelCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Applications/ViewModelCore.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/Cache.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/CollectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/CollectionHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/EventArgsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/EventArgsCache.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/INotifyCollectionChanging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/INotifyCollectionChanging.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/INotifyCollectionItemChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/INotifyCollectionItemChanged.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/IReadOnlyObservableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/IReadOnlyObservableList.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/Model.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/ObservableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/ObservableList.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/ObservableListViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/ObservableListViewBase.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/ObservableListViewCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/ObservableListViewCore.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/ReadOnlyObservableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/ReadOnlyObservableList.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/StringHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/SynchronizingCollectionCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/SynchronizingCollectionCore.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/SynchronizingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/SynchronizingList.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/TaskHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/TaskHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/ThrottledAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/ThrottledAction.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/TraceSourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/TraceSourceExtensions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/ValidatableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/ValidatableModel.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/ValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/ValidationHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/WeakEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/WeakEvent.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Foundation/WeakEventHandlerTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Foundation/WeakEventHandlerTable.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Presentation/Services/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Presentation/Services/SettingsService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/Presentation/Services/SettingsServiceCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/Presentation/Services/SettingsServiceCore.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Core/System.Waf.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Core/System.Waf.Core.csproj -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/AssertException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/AssertException.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/AssertHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/AssertHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/ExpectedChangedCountMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/ExpectedChangedCountMode.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/Mocks/MockSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/Mocks/MockSettingsService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/Mocks/MockView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/Mocks/MockView.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/System.Waf.UnitTesting.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/System.Waf.UnitTesting.Core.csproj -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/UnitTestSynchronizationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/UnitTestSynchronizationContext.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/FileDialogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/FileDialogType.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MefMockSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MefMockSettingsService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MessageType.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MockDialogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MockDialogView.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MockFileDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MockFileDialogService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MockMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Mocks/MockMessageService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/System.Waf.UnitTesting.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/System.Waf.UnitTesting.Wpf.csproj -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/GenericViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/GenericViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/MefViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/MefViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/ObservableListViewTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/ObservableListViewTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/Pop3SettingsViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/Pop3SettingsViewModelTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/Services/FileDialogResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/Services/FileDialogResultTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/Services/FileTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/Services/FileTypeTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/SynchronizingCollectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/SynchronizingCollectionTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/ViewHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Applications/ViewHelperTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Foundation/DataErrorInfoExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Foundation/DataErrorInfoExtensionsTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Foundation/DataErrorInfoSupportTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Foundation/DataErrorInfoSupportTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Controls/DataGridHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Controls/DataGridHelperTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/ResourceHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/ResourceHelperTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Resources/BrushResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Resources/BrushResources.xaml -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Resources/LayoutResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Resources/LayoutResources.xaml -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Services/FileDialogServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Services/FileDialogServiceTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Services/MessageServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/Services/MessageServiceTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/ValidationHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/Presentation/ValidationHelperTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/System.Waf.Wpf.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/System.Waf.Wpf.Test.csproj -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/UnitTesting/Mocks/MockDialogViewTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/UnitTesting/Mocks/MockDialogViewTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/UnitTesting/Mocks/MockFileDialogServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/UnitTesting/Mocks/MockFileDialogServiceTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf.Test/WafConfigurationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf.Test/WafConfigurationTest.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/DispatcherHelperCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/DispatcherHelperCore.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/IModuleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/IModuleController.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/ObservableListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/ObservableListView.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/FileDialogResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/FileDialogResult.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/FileDialogServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/FileDialogServiceExtensions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/FileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/FileType.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/IFileDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/IFileDialogService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/IMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/IMessageService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/MessageServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/Services/MessageServiceExtensions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/SynchronizingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/SynchronizingCollection.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/ViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/ViewHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/ViewModel.Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/ViewModel.Generic.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Applications/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Applications/ViewModel.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Foundation/DataErrorInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Foundation/DataErrorInfoExtensions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Foundation/DataErrorInfoSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Foundation/DataErrorInfoSupport.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Bind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Bind.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Controls/DataGridHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Controls/DataGridHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/InvertBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/InvertBooleanConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/StringFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/StringFormatConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/ValidationErrorsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Converters/ValidationErrorsConverter.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/DispatcherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/DispatcherHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/ResourceHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Services/FileDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Services/FileDialogService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Services/MefSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Services/MefSettingsService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Services/MessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/Services/MessageService.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/ValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/ValidationHelper.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/ValidationReloadedTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/ValidationReloadedTracker.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/ValidationTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Presentation/ValidationTracker.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/System.Waf.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/System.Waf.Wpf.csproj -------------------------------------------------------------------------------- /src/System.Waf/System.Waf/System.Waf.Wpf/WafConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/waf/HEAD/src/System.Waf/System.Waf/System.Waf.Wpf/WafConfiguration.cs --------------------------------------------------------------------------------