├── .gitattributes ├── .gitignore ├── License.txt ├── Readme.md ├── images ├── Add Application - List.jpg ├── Add Application - Manual.jpg ├── AstoundingDockIcon.png ├── Edit Application.jpg ├── Horizontal mode.jpg ├── Settings Window - Default.jpg ├── Vertical mode.jpg └── View Applications.jpg ├── lib └── QuickZip.IO.PIDL │ ├── Cake3.snk │ ├── ChangeLog.txt │ ├── DirExClassDiagram.cd │ ├── DirExCoreDiagram.cd │ ├── DirExToolsDiagram.cd │ ├── DirExWorkDiagram.cd │ ├── IO │ ├── FileBrowser │ │ ├── Interfaces │ │ │ ├── IAdviseSink.cs │ │ │ ├── IContextMenu.cs │ │ │ ├── IDataObject.cs │ │ │ ├── IDragSourceHelper.cs │ │ │ ├── IDropSource.cs │ │ │ ├── IDropTarget.cs │ │ │ ├── IDropTargetHelper.cs │ │ │ ├── IEnumFORMATETC.cs │ │ │ ├── IEnumIDList.cs │ │ │ ├── IEnumSTATSTG.cs │ │ │ ├── IShellExtInit.cs │ │ │ ├── IShellFolder.cs │ │ │ ├── IStorage.cs │ │ │ └── IStream.cs │ │ ├── PIDL.cs │ │ ├── ShellAPI.cs │ │ └── ShellHelper.cs │ ├── FileStreamEx │ │ └── FileStreamEx.cs │ ├── FileSystemInfoEx │ │ ├── DirectoryInfoEx.cs │ │ ├── DriveInfoEx.cs │ │ ├── FileInfoEx.cs │ │ └── FileSystemInfoEx.cs │ ├── Header │ │ ├── FileBrowser │ │ │ ├── Interfaces │ │ │ │ ├── IAdviseSink.cs │ │ │ │ ├── IContextMenu.cs │ │ │ │ ├── IDataObject.cs │ │ │ │ ├── IDragSourceHelper.cs │ │ │ │ ├── IDropSource.cs │ │ │ │ ├── IDropTarget.cs │ │ │ │ ├── IDropTargetHelper.cs │ │ │ │ ├── IEnumFORMATETC.cs │ │ │ │ ├── IEnumIDList.cs │ │ │ │ ├── IEnumSTATSTG.cs │ │ │ │ ├── IExtractImage.cs │ │ │ │ ├── IShellExtInit.cs │ │ │ │ ├── IShellFolder.cs │ │ │ │ ├── IStorage.cs │ │ │ │ └── IStream.cs │ │ │ ├── PIDL.cs │ │ │ ├── ShellAPI.cs │ │ │ └── ShellHelper.cs │ │ ├── IProgressDialog │ │ │ └── IProgressDialog.cs │ │ ├── IShellFolder2.cs │ │ ├── KnownFolders.cs │ │ ├── PreviewHandlerWPF │ │ │ ├── Interface │ │ │ │ ├── COMStream.cs │ │ │ │ ├── IInitalizeWithFile.cs │ │ │ │ ├── IInitializeWithStream.cs │ │ │ │ ├── IPreviewHandler.cs │ │ │ │ └── MSG.cs │ │ │ └── PreviewManager.cs │ │ ├── ShellLink │ │ │ └── Interface │ │ │ │ ├── FileIcon.cs │ │ │ │ └── ShellLink.cs │ │ └── VirtualFileDataObject │ │ │ ├── ShellAPI.cs │ │ │ └── VirtualFileDataObject.cs │ ├── Tools │ │ ├── Comparer │ │ │ └── ExComparer.cs │ │ ├── Dialog │ │ │ └── ShellProgressDialog.cs │ │ ├── DirectoryEx.cs │ │ ├── DragDropLib.cs │ │ ├── FileEx.cs │ │ ├── Helper.cs │ │ ├── IOTools.cs │ │ ├── Interface │ │ │ ├── ICustomProgressDialog.cs │ │ │ ├── IExWork.cs │ │ │ ├── IProgressDialog.cs │ │ │ ├── ISupportDrag.cs │ │ │ ├── ISupportDrop.cs │ │ │ ├── IWork.cs │ │ │ ├── OverwriteInfo.cs │ │ │ ├── ShellFolder.cs │ │ │ ├── ShellFolder2.cs │ │ │ └── Storage.cs │ │ ├── PathEx.cs │ │ ├── ThirdParty │ │ │ ├── CRC32 │ │ │ │ └── crc32.cs │ │ │ ├── IProgressDialog.cs │ │ │ └── NaturalComparer.cs │ │ ├── Work.zip │ │ ├── Work │ │ │ ├── CopyWork.cs │ │ │ ├── DeleteWork.cs │ │ │ ├── ExWorkBase.cs │ │ │ ├── ListWork.cs │ │ │ ├── MoveWork.cs │ │ │ ├── MultiExWork.cs │ │ │ ├── WorkBase.cs │ │ │ └── WorkSpawner.cs │ │ └── Wrappers │ │ │ ├── ContextMenu │ │ │ ├── ContextMenuHelperEx.cs │ │ │ ├── ContextMenuWrapper.cs │ │ │ └── CustomMenuStructure.cs │ │ │ ├── ContextMenuHelperEx.cs │ │ │ ├── ContextMenuWrapper.cs │ │ │ ├── DataObjectEx.cs │ │ │ ├── DragWrapper.cs │ │ │ ├── ExtraPropertiesProvider.cs │ │ │ ├── FileSystemWatcherEx.cs │ │ │ ├── FileTypeInfoProvider.cs │ │ │ ├── ImageExtractor.cs │ │ │ ├── Preview │ │ │ ├── PreviewHelper.cs │ │ │ └── PreviewerControl.cs │ │ │ └── ShellProgressDialog.cs │ └── VirtualFileDataObject │ │ ├── ShellAPI.cs │ │ └── VirtualFileDataObject.cs │ ├── License.txt │ ├── Properties │ └── AssemblyInfo.cs │ ├── QuickZip.IO.PIDL.csproj │ └── packages.config └── src ├── AppBarInterface ├── AppBarException.cs ├── AppBarInterface.csproj ├── AppBarUtils.cs ├── ApplicationDesktopToolbar.cs ├── DockPosition.cs ├── IAppBar.cs ├── Position.cs ├── Properties │ └── AssemblyInfo.cs ├── RawInput.cs ├── TaskbarState.cs └── WpfAppBar.cs ├── AstoundingDock.sln ├── AstoundingDock ├── App.xaml ├── App.xaml.cs ├── AstoundingDock.csproj ├── ChangeLog.txt ├── Converters │ ├── IconSizeToIntConverter.cs │ ├── IconToImageConverter.cs │ ├── ImagePathToImageConverter.cs │ ├── ImageSourceToImageConverter.cs │ └── MessageBoxButtonVisibilityConverter.cs ├── Dependancies │ ├── INIFileParser.XML │ ├── INIFileParser.dll │ └── IconLib.dll ├── EntryPoint.cs ├── Extensions │ ├── BitmapEx.cs │ ├── DependencyObjectEx.cs │ ├── EnumEx.cs │ ├── FrameworkElementEx.cs │ ├── GenericEx.cs │ ├── IConvertibleEx.cs │ ├── IDataObjectEx.cs │ ├── IconEx.cs │ ├── ObjectEx.cs │ ├── PathEx.cs │ ├── StringEx.cs │ └── XElementEx.cs ├── FodyWeavers.xml ├── Messages │ ├── ApplicationMessage.cs │ ├── DatabaseMessage.cs │ ├── ExpandedTabMessage.cs │ ├── MenuMessage.cs │ ├── RequestCloseMessage.cs │ ├── SettingChangedMessage.cs │ ├── ShellContextMenuMessage.cs │ ├── TabMessage.cs │ └── TabToMainMessage.cs ├── Models │ ├── ApplicationModel.cs │ ├── TabModel.cs │ └── XmlDatabase.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── astoundingdock.ico │ ├── astoundingdock.jpg │ └── error.ico ├── Services │ ├── IMessageBoxService.cs │ ├── IOpenFileService.cs │ ├── IService.cs │ ├── IViewService.cs │ ├── MessageBoxService.cs │ ├── OpenFileService.cs │ ├── ServiceManager.cs │ └── ViewService.cs ├── Setup │ ├── AstoundingDock 1.1.1.0.exe │ ├── AstoundingDock 1.2.0.0.exe │ ├── dotNetFx40_Client_setup.exe │ └── install.iss ├── Themes │ ├── AppDockTheme.xaml │ ├── Ballistic.dll │ ├── Developer.dll │ ├── Gemini.dll │ ├── Glass.dll │ └── Odyssey.dll ├── Tools │ └── NotifyPropertyWeaverMsBuildTask.dll ├── Ui │ ├── AppMenuItemBehaviour.cs │ ├── DockWindow.cs │ ├── DragDropBehaviour.cs │ ├── GridViewSortBehaviour.cs │ ├── ListViewColumnStretchBehaviour.cs │ ├── MvvmSlider.cs │ ├── NoRightClickExpander.cs │ ├── PreloadingMenuBehaviour.cs │ ├── SearchResultsControl.xaml │ ├── SearchResultsControl.xaml.cs │ ├── SelectedItemsBinding │ │ ├── IListItemConvertor.cs │ │ ├── MultiSelectorBehaviors.cs │ │ └── TwoListSynchronizer.cs │ ├── SharedResourceDictionary.cs │ └── ShellContextMenuBehaviour.cs ├── Utils │ ├── ActionQueue.cs │ ├── ApplicationIcon.cs │ ├── Configuration.cs │ ├── EnumDescriptionConverter.cs │ ├── FileHelper.cs │ ├── Helper.cs │ ├── ImageHelper.cs │ ├── RegistryHelper.cs │ ├── SpecialFolderPatternConverter.cs │ └── WpfHelper.cs ├── ViewModels │ ├── AboutViewModel.cs │ ├── ApplicationViewModel.cs │ ├── MainViewModel.cs │ ├── MessageBoxViewModel.cs │ ├── SearchDockViewModel.cs │ ├── SearchNewViewModel.cs │ ├── SearchSteamViewModel.cs │ ├── SearchViewModel.cs │ ├── SettingsViewModel.cs │ └── TabViewModel.cs ├── Views │ ├── AboutWindow.xaml │ ├── AboutWindow.xaml.cs │ ├── ApplicationWindow.xaml │ ├── ApplicationWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MessageBoxDialog.xaml │ ├── MessageBoxDialog.xaml.cs │ ├── SearchDockWindow.xaml │ ├── SearchDockWindow.xaml.cs │ ├── SearchSteamWindow.xaml │ ├── SearchSteamWindow.xaml.cs │ ├── SearchWindow.xaml │ ├── SearchWindow.xaml.cs │ ├── SettingsWindow.xaml │ ├── SettingsWindow.xaml.cs │ ├── TabWindow.xaml │ └── TabWindow.xaml.cs ├── app.config ├── app.manifest ├── log4net.config ├── packages.config └── packages │ ├── Rx-Main.1.0.10621 │ ├── Rx-Main.1.0.10621.nupkg │ └── lib │ │ ├── Net35 │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ │ ├── Net4 │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ │ ├── SL3-WP │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ │ └── SL4 │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ ├── Rx_Experimental-Main.1.1.10621 │ ├── Rx_Experimental-Main.1.1.10621.nupkg │ └── lib │ │ ├── Net35 │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ │ ├── Net4 │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ │ ├── SL3-WP │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ │ ├── SL4 │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ │ └── SL5 │ │ ├── System.Reactive.XML │ │ └── System.Reactive.dll │ ├── reactiveui-core.2.3.2.0 │ ├── lib │ │ ├── Net35 │ │ │ ├── ReactiveUI_35.dll │ │ │ └── ReactiveUI_35.xml │ │ ├── Net4 │ │ │ ├── ReactiveUI.dll │ │ │ └── ReactiveUI.xml │ │ ├── SL3-WP │ │ │ ├── ReactiveUI_WP7.dll │ │ │ └── ReactiveUI_WP7.xml │ │ └── SL4 │ │ │ ├── ReactiveUI_SL4.dll │ │ │ └── ReactiveUI_SL4.xml │ └── reactiveui-core.2.3.2.0.nupkg │ └── repositories.config ├── Win32Interface ├── BitHelper.cs ├── NativeMethods │ ├── ApplicationDesktopToolbarNativeMethods.cs │ ├── GeneralNativeMethods.cs │ ├── ImageNativeMethods.cs │ ├── MouseNativeMethods.cs │ ├── RawInputNativeMethods.cs │ └── WindowsNativeMethods.cs ├── Properties │ └── AssemblyInfo.cs ├── Win32.cs ├── Win32AppBar.cs ├── Win32Constants.AppBar.cs ├── Win32Constants.Common.cs ├── Win32Constants.Windows.cs ├── Win32IO.cs ├── Win32Image.cs ├── Win32Ini.cs ├── Win32Interface.csproj ├── Win32Mouse.cs ├── Win32Process.cs ├── Win32RawInput.cs ├── Win32Shortcut.cs ├── Win32Window.cs └── WindowMessages.cs └── packages ├── MvvmLightLibs.4.1.23.0 ├── MvvmLightLibs.4.1.23.0.nupkg └── lib │ ├── SL3 │ ├── GalaSoft.MvvmLight.Extras.XML │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.XML │ ├── GalaSoft.MvvmLight.dll │ ├── Microsoft.Practices.ServiceLocation.dll │ ├── Microsoft.Practices.ServiceLocation.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── SL4 │ ├── GalaSoft.MvvmLight.Extras.SL4.XML │ ├── GalaSoft.MvvmLight.Extras.SL4.dll │ ├── GalaSoft.MvvmLight.SL4.XML │ ├── GalaSoft.MvvmLight.SL4.dll │ ├── Microsoft.Practices.ServiceLocation.dll │ ├── Microsoft.Practices.ServiceLocation.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── SL5 │ ├── GalaSoft.MvvmLight.Extras.SL5.dll │ ├── GalaSoft.MvvmLight.Extras.SL5.xml │ ├── GalaSoft.MvvmLight.SL5.dll │ ├── GalaSoft.MvvmLight.SL5.xml │ ├── Microsoft.Practices.ServiceLocation.dll │ ├── Microsoft.Practices.ServiceLocation.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── net35 │ ├── GalaSoft.MvvmLight.Extras.XML │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.XML │ ├── GalaSoft.MvvmLight.dll │ ├── Microsoft.Practices.ServiceLocation.dll │ ├── Microsoft.Practices.ServiceLocation.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── net40 │ ├── GalaSoft.MvvmLight.Extras.WPF4.XML │ ├── GalaSoft.MvvmLight.Extras.WPF4.dll │ ├── GalaSoft.MvvmLight.WPF4.XML │ ├── GalaSoft.MvvmLight.WPF4.dll │ ├── Microsoft.Practices.ServiceLocation.dll │ ├── Microsoft.Practices.ServiceLocation.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── sl3-wp │ ├── GalaSoft.MvvmLight.Extras.WP7.XML │ ├── GalaSoft.MvvmLight.Extras.WP7.dll │ ├── GalaSoft.MvvmLight.WP7.XML │ ├── GalaSoft.MvvmLight.WP7.dll │ ├── Microsoft.Practices.ServiceLocation.dll │ ├── Microsoft.Practices.ServiceLocation.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── sl4-windowsphone71 │ ├── GalaSoft.MvvmLight.Extras.WP71.dll │ ├── GalaSoft.MvvmLight.Extras.WP71.xml │ ├── GalaSoft.MvvmLight.WP71.dll │ ├── GalaSoft.MvvmLight.WP71.xml │ ├── Microsoft.Practices.ServiceLocation.dll │ ├── Microsoft.Practices.ServiceLocation.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ └── winrt45 │ ├── GalaSoft.MvvmLight.Extras.Win8.dll │ ├── GalaSoft.MvvmLight.Extras.Win8.xml │ ├── GalaSoft.MvvmLight.Win8.dll │ ├── GalaSoft.MvvmLight.Win8.xml │ ├── Microsoft.Practices.ServiceLocation.dll │ └── Microsoft.Practices.ServiceLocation.xml ├── log4net.2.0.3 ├── lib │ ├── net10-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net11-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net20-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net35-client │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net35-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net40-client │ │ ├── log4net.dll │ │ └── log4net.xml │ └── net40-full │ │ ├── log4net.dll │ │ └── log4net.xml ├── log4net.2.0.3.nupkg └── log4net.2.0.3.nuspec └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/License.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/Readme.md -------------------------------------------------------------------------------- /images/Add Application - List.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/images/Add Application - List.jpg -------------------------------------------------------------------------------- /images/Add Application - Manual.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/images/Add Application - Manual.jpg -------------------------------------------------------------------------------- /images/AstoundingDockIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/images/AstoundingDockIcon.png -------------------------------------------------------------------------------- /images/Edit Application.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/images/Edit Application.jpg -------------------------------------------------------------------------------- /images/Horizontal mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/images/Horizontal mode.jpg -------------------------------------------------------------------------------- /images/Settings Window - Default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/images/Settings Window - Default.jpg -------------------------------------------------------------------------------- /images/Vertical mode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/images/Vertical mode.jpg -------------------------------------------------------------------------------- /images/View Applications.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/images/View Applications.jpg -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/Cake3.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/Cake3.snk -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/ChangeLog.txt -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/DirExClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/DirExClassDiagram.cd -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/DirExCoreDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/DirExCoreDiagram.cd -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/DirExToolsDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/DirExToolsDiagram.cd -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/DirExWorkDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/DirExWorkDiagram.cd -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IAdviseSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IAdviseSink.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IContextMenu.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDataObject.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDragSourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDragSourceHelper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDropSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDropSource.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDropTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDropTarget.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDropTargetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IDropTargetHelper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IEnumFORMATETC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IEnumFORMATETC.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IEnumIDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IEnumIDList.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IEnumSTATSTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IEnumSTATSTG.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IShellExtInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IShellExtInit.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IShellFolder.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IStorage.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/Interfaces/IStream.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/PIDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/PIDL.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/ShellAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/ShellAPI.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileBrowser/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileBrowser/ShellHelper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileStreamEx/FileStreamEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileStreamEx/FileStreamEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileSystemInfoEx/DirectoryInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileSystemInfoEx/DirectoryInfoEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileSystemInfoEx/DriveInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileSystemInfoEx/DriveInfoEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileSystemInfoEx/FileInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileSystemInfoEx/FileInfoEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/FileSystemInfoEx/FileSystemInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/FileSystemInfoEx/FileSystemInfoEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IAdviseSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IAdviseSink.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IContextMenu.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDataObject.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDragSourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDragSourceHelper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDropSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDropSource.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDropTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDropTarget.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDropTargetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IDropTargetHelper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IEnumFORMATETC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IEnumFORMATETC.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IEnumIDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IEnumIDList.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IEnumSTATSTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IEnumSTATSTG.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IExtractImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IExtractImage.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IShellExtInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IShellExtInit.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IShellFolder.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IStorage.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/Interfaces/IStream.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/PIDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/PIDL.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/ShellAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/ShellAPI.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/FileBrowser/ShellHelper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/IProgressDialog/IProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/IProgressDialog/IProgressDialog.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/IShellFolder2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/IShellFolder2.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/KnownFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/KnownFolders.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/COMStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/COMStream.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/IInitalizeWithFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/IInitalizeWithFile.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/IInitializeWithStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/IInitializeWithStream.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/IPreviewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/IPreviewHandler.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/MSG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/Interface/MSG.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/PreviewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/PreviewHandlerWPF/PreviewManager.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/ShellLink/Interface/FileIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/ShellLink/Interface/FileIcon.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/ShellLink/Interface/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/ShellLink/Interface/ShellLink.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/VirtualFileDataObject/ShellAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/VirtualFileDataObject/ShellAPI.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Header/VirtualFileDataObject/VirtualFileDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Header/VirtualFileDataObject/VirtualFileDataObject.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Comparer/ExComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Comparer/ExComparer.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Dialog/ShellProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Dialog/ShellProgressDialog.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/DirectoryEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/DirectoryEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/DragDropLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/DragDropLib.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/FileEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/FileEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Helper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/IOTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/IOTools.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/ICustomProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/ICustomProgressDialog.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/IExWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/IExWork.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/IProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/IProgressDialog.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/ISupportDrag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/ISupportDrag.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/ISupportDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/ISupportDrop.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/IWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/IWork.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/OverwriteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/OverwriteInfo.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/ShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/ShellFolder.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/ShellFolder2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/ShellFolder2.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Interface/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Interface/Storage.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/PathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/PathEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/ThirdParty/CRC32/crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/ThirdParty/CRC32/crc32.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/ThirdParty/IProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/ThirdParty/IProgressDialog.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/ThirdParty/NaturalComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/ThirdParty/NaturalComparer.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work.zip -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work/CopyWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work/CopyWork.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work/DeleteWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work/DeleteWork.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work/ExWorkBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work/ExWorkBase.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work/ListWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work/ListWork.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work/MoveWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work/MoveWork.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work/MultiExWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work/MultiExWork.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work/WorkBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work/WorkBase.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Work/WorkSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Work/WorkSpawner.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenu/ContextMenuHelperEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenu/ContextMenuHelperEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenu/ContextMenuWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenu/ContextMenuWrapper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenu/CustomMenuStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenu/CustomMenuStructure.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenuHelperEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenuHelperEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenuWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ContextMenuWrapper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/DataObjectEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/DataObjectEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/DragWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/DragWrapper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ExtraPropertiesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ExtraPropertiesProvider.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/FileSystemWatcherEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/FileSystemWatcherEx.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/FileTypeInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/FileTypeInfoProvider.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ImageExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ImageExtractor.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/Preview/PreviewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/Preview/PreviewHelper.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/Preview/PreviewerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/Preview/PreviewerControl.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ShellProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/Tools/Wrappers/ShellProgressDialog.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/VirtualFileDataObject/ShellAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/VirtualFileDataObject/ShellAPI.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/IO/VirtualFileDataObject/VirtualFileDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/IO/VirtualFileDataObject/VirtualFileDataObject.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/License.txt -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/QuickZip.IO.PIDL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/QuickZip.IO.PIDL.csproj -------------------------------------------------------------------------------- /lib/QuickZip.IO.PIDL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/lib/QuickZip.IO.PIDL/packages.config -------------------------------------------------------------------------------- /src/AppBarInterface/AppBarException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/AppBarException.cs -------------------------------------------------------------------------------- /src/AppBarInterface/AppBarInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/AppBarInterface.csproj -------------------------------------------------------------------------------- /src/AppBarInterface/AppBarUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/AppBarUtils.cs -------------------------------------------------------------------------------- /src/AppBarInterface/ApplicationDesktopToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/ApplicationDesktopToolbar.cs -------------------------------------------------------------------------------- /src/AppBarInterface/DockPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/DockPosition.cs -------------------------------------------------------------------------------- /src/AppBarInterface/IAppBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/IAppBar.cs -------------------------------------------------------------------------------- /src/AppBarInterface/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/Position.cs -------------------------------------------------------------------------------- /src/AppBarInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AppBarInterface/RawInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/RawInput.cs -------------------------------------------------------------------------------- /src/AppBarInterface/TaskbarState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/TaskbarState.cs -------------------------------------------------------------------------------- /src/AppBarInterface/WpfAppBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AppBarInterface/WpfAppBar.cs -------------------------------------------------------------------------------- /src/AstoundingDock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock.sln -------------------------------------------------------------------------------- /src/AstoundingDock/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/App.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/App.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/AstoundingDock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/AstoundingDock.csproj -------------------------------------------------------------------------------- /src/AstoundingDock/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ChangeLog.txt -------------------------------------------------------------------------------- /src/AstoundingDock/Converters/IconSizeToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Converters/IconSizeToIntConverter.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Converters/IconToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Converters/IconToImageConverter.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Converters/ImagePathToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Converters/ImagePathToImageConverter.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Converters/ImageSourceToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Converters/ImageSourceToImageConverter.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Converters/MessageBoxButtonVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Converters/MessageBoxButtonVisibilityConverter.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Dependancies/INIFileParser.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Dependancies/INIFileParser.XML -------------------------------------------------------------------------------- /src/AstoundingDock/Dependancies/INIFileParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Dependancies/INIFileParser.dll -------------------------------------------------------------------------------- /src/AstoundingDock/Dependancies/IconLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Dependancies/IconLib.dll -------------------------------------------------------------------------------- /src/AstoundingDock/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/EntryPoint.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/BitmapEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/BitmapEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/DependencyObjectEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/DependencyObjectEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/EnumEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/EnumEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/FrameworkElementEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/FrameworkElementEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/GenericEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/GenericEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/IConvertibleEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/IConvertibleEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/IDataObjectEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/IDataObjectEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/IconEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/IconEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/ObjectEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/ObjectEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/PathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/PathEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/StringEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/StringEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Extensions/XElementEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Extensions/XElementEx.cs -------------------------------------------------------------------------------- /src/AstoundingDock/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/FodyWeavers.xml -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/ApplicationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/ApplicationMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/DatabaseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/DatabaseMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/ExpandedTabMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/ExpandedTabMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/MenuMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/MenuMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/RequestCloseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/RequestCloseMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/SettingChangedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/SettingChangedMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/ShellContextMenuMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/ShellContextMenuMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/TabMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/TabMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Messages/TabToMainMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Messages/TabToMainMessage.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Models/ApplicationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Models/ApplicationModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Models/TabModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Models/TabModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Models/XmlDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Models/XmlDatabase.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Properties/Resources.resx -------------------------------------------------------------------------------- /src/AstoundingDock/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Properties/Settings.settings -------------------------------------------------------------------------------- /src/AstoundingDock/Resources/astoundingdock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Resources/astoundingdock.ico -------------------------------------------------------------------------------- /src/AstoundingDock/Resources/astoundingdock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Resources/astoundingdock.jpg -------------------------------------------------------------------------------- /src/AstoundingDock/Resources/error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Resources/error.ico -------------------------------------------------------------------------------- /src/AstoundingDock/Services/IMessageBoxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Services/IMessageBoxService.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Services/IOpenFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Services/IOpenFileService.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Services/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Services/IService.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Services/IViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Services/IViewService.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Services/MessageBoxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Services/MessageBoxService.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Services/OpenFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Services/OpenFileService.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Services/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Services/ServiceManager.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Services/ViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Services/ViewService.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Setup/AstoundingDock 1.1.1.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Setup/AstoundingDock 1.1.1.0.exe -------------------------------------------------------------------------------- /src/AstoundingDock/Setup/AstoundingDock 1.2.0.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Setup/AstoundingDock 1.2.0.0.exe -------------------------------------------------------------------------------- /src/AstoundingDock/Setup/dotNetFx40_Client_setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Setup/dotNetFx40_Client_setup.exe -------------------------------------------------------------------------------- /src/AstoundingDock/Setup/install.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Setup/install.iss -------------------------------------------------------------------------------- /src/AstoundingDock/Themes/AppDockTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Themes/AppDockTheme.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Themes/Ballistic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Themes/Ballistic.dll -------------------------------------------------------------------------------- /src/AstoundingDock/Themes/Developer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Themes/Developer.dll -------------------------------------------------------------------------------- /src/AstoundingDock/Themes/Gemini.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Themes/Gemini.dll -------------------------------------------------------------------------------- /src/AstoundingDock/Themes/Glass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Themes/Glass.dll -------------------------------------------------------------------------------- /src/AstoundingDock/Themes/Odyssey.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Themes/Odyssey.dll -------------------------------------------------------------------------------- /src/AstoundingDock/Tools/NotifyPropertyWeaverMsBuildTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Tools/NotifyPropertyWeaverMsBuildTask.dll -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/AppMenuItemBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/AppMenuItemBehaviour.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/DockWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/DockWindow.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/DragDropBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/DragDropBehaviour.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/GridViewSortBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/GridViewSortBehaviour.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/ListViewColumnStretchBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/ListViewColumnStretchBehaviour.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/MvvmSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/MvvmSlider.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/NoRightClickExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/NoRightClickExpander.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/PreloadingMenuBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/PreloadingMenuBehaviour.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/SearchResultsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/SearchResultsControl.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/SearchResultsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/SearchResultsControl.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/SelectedItemsBinding/IListItemConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/SelectedItemsBinding/IListItemConvertor.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/SelectedItemsBinding/MultiSelectorBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/SelectedItemsBinding/MultiSelectorBehaviors.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/SelectedItemsBinding/TwoListSynchronizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/SelectedItemsBinding/TwoListSynchronizer.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/SharedResourceDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/SharedResourceDictionary.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Ui/ShellContextMenuBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Ui/ShellContextMenuBehaviour.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/ActionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/ActionQueue.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/ApplicationIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/ApplicationIcon.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/Configuration.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/EnumDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/EnumDescriptionConverter.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/FileHelper.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/Helper.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/ImageHelper.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/RegistryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/RegistryHelper.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/SpecialFolderPatternConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/SpecialFolderPatternConverter.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Utils/WpfHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Utils/WpfHelper.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/ApplicationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/ApplicationViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/MessageBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/MessageBoxViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/SearchDockViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/SearchDockViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/SearchNewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/SearchNewViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/SearchSteamViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/SearchSteamViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/SearchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/SearchViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/ViewModels/TabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/ViewModels/TabViewModel.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/AboutWindow.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/ApplicationWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/ApplicationWindow.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/ApplicationWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/ApplicationWindow.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/MainWindow.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/MessageBoxDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/MessageBoxDialog.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/MessageBoxDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/MessageBoxDialog.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/SearchDockWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/SearchDockWindow.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/SearchDockWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/SearchDockWindow.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/SearchSteamWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/SearchSteamWindow.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/SearchSteamWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/SearchSteamWindow.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/SearchWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/SearchWindow.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/SearchWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/SearchWindow.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/SettingsWindow.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/Views/TabWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/TabWindow.xaml -------------------------------------------------------------------------------- /src/AstoundingDock/Views/TabWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/Views/TabWindow.xaml.cs -------------------------------------------------------------------------------- /src/AstoundingDock/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/app.config -------------------------------------------------------------------------------- /src/AstoundingDock/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/app.manifest -------------------------------------------------------------------------------- /src/AstoundingDock/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/log4net.config -------------------------------------------------------------------------------- /src/AstoundingDock/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages.config -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/Rx-Main.1.0.10621.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/Rx-Main.1.0.10621.nupkg -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/Net35/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/Net35/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/Net35/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/Net35/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/Net4/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/Net4/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/Net4/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/Net4/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/SL3-WP/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/SL3-WP/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/SL3-WP/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/SL3-WP/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/SL4/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/SL4/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/SL4/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx-Main.1.0.10621/lib/SL4/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/Rx_Experimental-Main.1.1.10621.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/Rx_Experimental-Main.1.1.10621.nupkg -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/Net35/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/Net35/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/Net35/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/Net35/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/Net4/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/Net4/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/Net4/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/Net4/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL3-WP/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL3-WP/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL3-WP/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL3-WP/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL4/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL4/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL4/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL4/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL5/System.Reactive.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL5/System.Reactive.XML -------------------------------------------------------------------------------- /src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL5/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/Rx_Experimental-Main.1.1.10621/lib/SL5/System.Reactive.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/Net35/ReactiveUI_35.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/Net35/ReactiveUI_35.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/Net35/ReactiveUI_35.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/Net35/ReactiveUI_35.xml -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/Net4/ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/Net4/ReactiveUI.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/Net4/ReactiveUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/Net4/ReactiveUI.xml -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/SL3-WP/ReactiveUI_WP7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/SL3-WP/ReactiveUI_WP7.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/SL3-WP/ReactiveUI_WP7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/SL3-WP/ReactiveUI_WP7.xml -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/SL4/ReactiveUI_SL4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/SL4/ReactiveUI_SL4.dll -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/SL4/ReactiveUI_SL4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/lib/SL4/ReactiveUI_SL4.xml -------------------------------------------------------------------------------- /src/AstoundingDock/packages/reactiveui-core.2.3.2.0/reactiveui-core.2.3.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/reactiveui-core.2.3.2.0/reactiveui-core.2.3.2.0.nupkg -------------------------------------------------------------------------------- /src/AstoundingDock/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/AstoundingDock/packages/repositories.config -------------------------------------------------------------------------------- /src/Win32Interface/BitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/BitHelper.cs -------------------------------------------------------------------------------- /src/Win32Interface/NativeMethods/ApplicationDesktopToolbarNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/NativeMethods/ApplicationDesktopToolbarNativeMethods.cs -------------------------------------------------------------------------------- /src/Win32Interface/NativeMethods/GeneralNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/NativeMethods/GeneralNativeMethods.cs -------------------------------------------------------------------------------- /src/Win32Interface/NativeMethods/ImageNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/NativeMethods/ImageNativeMethods.cs -------------------------------------------------------------------------------- /src/Win32Interface/NativeMethods/MouseNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/NativeMethods/MouseNativeMethods.cs -------------------------------------------------------------------------------- /src/Win32Interface/NativeMethods/RawInputNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/NativeMethods/RawInputNativeMethods.cs -------------------------------------------------------------------------------- /src/Win32Interface/NativeMethods/WindowsNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/NativeMethods/WindowsNativeMethods.cs -------------------------------------------------------------------------------- /src/Win32Interface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32AppBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32AppBar.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Constants.AppBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Constants.AppBar.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Constants.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Constants.Common.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Constants.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Constants.Windows.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32IO.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Image.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Ini.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Ini.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Interface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Interface.csproj -------------------------------------------------------------------------------- /src/Win32Interface/Win32Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Mouse.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Process.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32RawInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32RawInput.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Shortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Shortcut.cs -------------------------------------------------------------------------------- /src/Win32Interface/Win32Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/Win32Window.cs -------------------------------------------------------------------------------- /src/Win32Interface/WindowMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/Win32Interface/WindowMessages.cs -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/MvvmLightLibs.4.1.23.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/MvvmLightLibs.4.1.23.0.nupkg -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL3/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/GalaSoft.MvvmLight.SL4.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/GalaSoft.MvvmLight.SL4.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/GalaSoft.MvvmLight.SL4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/GalaSoft.MvvmLight.SL4.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL4/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/GalaSoft.MvvmLight.SL5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/GalaSoft.MvvmLight.SL5.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/GalaSoft.MvvmLight.SL5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/GalaSoft.MvvmLight.SL5.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/SL5/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net35/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net35/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net35/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net35/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net35/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net35/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net35/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net35/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net35/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net35/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net35/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net35/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net35/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net35/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net40/GalaSoft.MvvmLight.WPF4.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net40/GalaSoft.MvvmLight.WPF4.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net40/GalaSoft.MvvmLight.WPF4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net40/GalaSoft.MvvmLight.WPF4.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net40/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net40/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net40/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net40/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/net40/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/net40/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/GalaSoft.MvvmLight.WP7.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/GalaSoft.MvvmLight.WP7.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/GalaSoft.MvvmLight.WP7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/GalaSoft.MvvmLight.WP7.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl3-wp/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/GalaSoft.MvvmLight.Extras.WP71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/GalaSoft.MvvmLight.Extras.WP71.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/GalaSoft.MvvmLight.Extras.WP71.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/GalaSoft.MvvmLight.Extras.WP71.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/sl4-windowsphone71/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/GalaSoft.MvvmLight.Extras.Win8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/GalaSoft.MvvmLight.Extras.Win8.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/GalaSoft.MvvmLight.Extras.Win8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/GalaSoft.MvvmLight.Extras.Win8.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/GalaSoft.MvvmLight.Win8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/GalaSoft.MvvmLight.Win8.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/GalaSoft.MvvmLight.Win8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/GalaSoft.MvvmLight.Win8.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/MvvmLightLibs.4.1.23.0/lib/winrt45/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net10-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net10-full/log4net.dll -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net10-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net10-full/log4net.xml -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net11-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net11-full/log4net.dll -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net11-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net11-full/log4net.xml -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net20-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net20-full/log4net.dll -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net20-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net20-full/log4net.xml -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net35-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net35-client/log4net.dll -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net35-client/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net35-client/log4net.xml -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net35-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net35-full/log4net.dll -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net35-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net35-full/log4net.xml -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net40-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net40-client/log4net.dll -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net40-client/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net40-client/log4net.xml -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net40-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net40-full/log4net.dll -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/lib/net40-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/lib/net40-full/log4net.xml -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/log4net.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/log4net.2.0.3.nupkg -------------------------------------------------------------------------------- /src/packages/log4net.2.0.3/log4net.2.0.3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/log4net.2.0.3/log4net.2.0.3.nuspec -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsonormal/AstoundingDock/HEAD/src/packages/repositories.config --------------------------------------------------------------------------------