├── .gitignore ├── LICENSE ├── README.md ├── docs └── readme.txt ├── installer ├── BrowseMonkey.nsi └── build.bat └── src ├── BrowseMonkey.sln ├── BrowseMonkey ├── App.ico ├── ApplicationConsole.cs ├── ApplicationConsole.resx ├── AssemblyInfo.cs ├── BrowseMonkey.csproj ├── Constants.cs ├── Enums.cs ├── ExportViewer.cs ├── ExportViewer.resx ├── FileListExportDialog.cs ├── FileListExportDialog.resx ├── FormFactory.cs ├── FormFinderLib.cs ├── IDirty.cs ├── ISpawned.cs ├── MainForm.cs ├── MainForm.resx ├── Resources │ ├── About.txt │ ├── ChangeLog.txt │ ├── Credits.txt │ ├── Images │ │ ├── LinkLockerIcons │ │ │ ├── brokenLink.ico │ │ │ ├── folder_Closed.ico │ │ │ ├── folder_Open.ico │ │ │ └── link.ico │ │ ├── aboutTop.png │ │ ├── appIcon.ico │ │ ├── clip.ico │ │ ├── close.ico │ │ ├── close.png │ │ ├── close001_16x16.png │ │ ├── columns_001.png │ │ ├── copy.png │ │ ├── down001_16x16.png │ │ ├── minus001_16x16.png │ │ ├── root.ICO │ │ ├── save.ico │ │ ├── save.png │ │ ├── splash.png │ │ ├── up001_16x16.png │ │ └── volumeIcons │ │ │ ├── cd.png │ │ │ ├── cdr.png │ │ │ ├── cdrw.png │ │ │ ├── diskette.png │ │ │ ├── dvd.png │ │ │ ├── dvdr.png │ │ │ ├── dvdrw.png │ │ │ ├── firewiredrive.png │ │ │ ├── harddisk.png │ │ │ ├── netdrive.png │ │ │ ├── tape.png │ │ │ ├── unknown.png │ │ │ ├── usbdrive.png │ │ │ └── zip.png │ └── Xml │ │ ├── PromptContents.xml │ │ ├── aboutContents.xml │ │ ├── listviewConfigs.xml │ │ ├── styleSheet.xml │ │ ├── treeIconLoadList.xml │ │ ├── volumeDataFormat.xsd │ │ ├── volumeDataFormat.xsx │ │ ├── volumeIndexFormat.xsd │ │ ├── volumeIndexFormat.xsx │ │ └── volumeTypes.xml ├── SearchArguments.cs ├── SearchArguments.resx ├── SearchDialog.cs ├── SearchDialog.resx ├── SearchResults.cs ├── SearchResults.resx ├── TextExportDialog.cs ├── TextExportDialog.resx ├── VolumeBrowser.cs ├── VolumeBrowser.resx ├── VolumeConvertDialog.cs ├── VolumeConvertDialog.resx ├── VolumeCreateDialog.cs ├── VolumeCreateDialog.resx ├── VolumePathSelectDialog.cs ├── VolumePathSelectDialog.resx ├── VolumeProperties.cs ├── VolumeProperties.resx ├── app.config └── packages.config ├── BrowseMonkeyData ├── AssemblyInfo.cs ├── BrowseMonkeyData.csproj ├── Constants.cs ├── Enums.cs ├── Volume.cs ├── Volume101.cs ├── VolumeConversionLib.cs ├── VolumeException.cs ├── VolumeIdentificationLib.cs ├── volumeDataFormat.xsd ├── volumeDataFormat.xsx ├── volumeDataFormat101.xsd ├── volumeDataFormat101.xsx ├── volumeIndexFormat.xsd ├── volumeIndexFormat.xsx ├── volumeIndexFormat101.xsd └── volumeIndexFormat101.xsx ├── BrowseMonkeyUnitTest ├── AssemblyInfo.cs ├── BrowseMonkeyUnitTest.csproj └── SearchTest.cs ├── BrowseMonkeyVolumesUnitTest ├── AssemblyInfo.cs ├── BMVolumeTest.cs └── BrowseMonkeyDataUnitTest.csproj ├── FSXml ├── AssemblyInfo.cs ├── Enums.cs ├── FSXml.csproj ├── FSXmlFileListBuilder.cs ├── FSXmlLib.cs ├── FSXmlTextExporter.cs ├── FSXmlWriter.cs ├── ReadError.cs ├── SharpZipWrapperLib.cs ├── StreamUncompressor.cs └── packages.config ├── FSXmlUnitTest ├── AssemblyInfo.cs ├── Constants.cs ├── FSXmlLibTest.cs ├── FSXmlUnitTest.csproj ├── FsXmlFileListBuilderTest.cs └── FsXmlWriterTest.cs ├── FSXmlWinUI ├── AssemblyInfo.cs ├── Enums.cs ├── FSXmlExplorer.cs ├── FSXmlExplorer.resx ├── FSXmlTreeNode.cs ├── FSXmlTreeViewFiller.cs ├── FSXmlWinUI.csproj └── Resources │ ├── FileSelected.ico │ ├── FileUnselected.ico │ ├── FolderSelected.ico │ ├── FolderUnselected.ico │ └── ListviewConfig.xml └── vcFramework ├── Arrays ├── ArrayLib.cs ├── ByteArrayLib.cs ├── Enums.cs └── StringArrayLib.cs ├── Assemblies ├── AssemblyAccessor.cs └── AssemblyLib.cs ├── Collections ├── Enums.cs └── FSLinksCollection.cs ├── CommonResources └── Icons │ └── OPENFOLD.ICO ├── DataItems ├── ByteSizeItem.cs └── StringItem.cs ├── Delegates ├── DelegateLib.cs └── Delegates.cs ├── Diagnostics └── ProcessLib.cs ├── Drawing └── DrawingLib.cs ├── ErrorHandlers ├── ByteSizeException.cs └── LogFileException.cs ├── IO ├── FileSystemLib.cs ├── Logger.cs ├── MappingException.cs ├── RandomFSItemPicker.cs └── Streams │ ├── StreamSplitter.cs │ └── StreamsLib.cs ├── IProgress.cs ├── IStateManageable.cs ├── Interop ├── StringMessageEventArgs.cs └── StringMessenger.cs ├── Maths └── AggregationLib.cs ├── Parsers ├── ParserLib.cs ├── StringFormatLib.cs └── StringTypeTestLib.cs ├── Properties └── AssemblyInfo.cs ├── RandomItems └── RandomLib.cs ├── Serialization └── SerializeLib.cs ├── Text ├── StringSortLib.cs └── TextConvertLib.cs ├── Threads └── ThreadCollection.cs ├── Time ├── DateTimeLib.cs └── Enums.cs ├── UserControls ├── MessageConsole.cs ├── MessageConsole.resx ├── close.png ├── editcopy.png ├── filesave.png ├── filesaveas.png ├── info.png └── trash.png ├── Windows └── Forms │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── ColumnHeaderSP.cs │ ├── ColumnHeaderSP.resx │ ├── ColumnStringSorter.cs │ ├── ComboBoxDataItem.cs │ ├── DisplayValueItem.cs │ ├── FormLib.cs │ ├── ListBoxLib.cs │ ├── ListViewItemSP.cs │ ├── ListViewSP.cs │ ├── ListViewSP.resx │ ├── PanelGallery.cs │ ├── PanelGallery.resx │ ├── PanelGalleryCollection.cs │ ├── PanelGalleryItemAddedEventArgs.cs │ ├── ProgressBarHelper.cs │ ├── PromptLib.cs │ ├── SignOfLife.cs │ ├── SignOfLife.resx │ ├── Splash.cs │ ├── Splash.resx │ ├── TimedProgressBarAdvancer.cs │ └── TreeViewNodeExpander.cs ├── Xml ├── StateHolder.cs ├── XmlLib.cs ├── XmlSearch.cs ├── XmlSearchResult.cs ├── XmlValidator.cs └── XmlValidatorLib.cs └── vcFramework.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/README.md -------------------------------------------------------------------------------- /docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/docs/readme.txt -------------------------------------------------------------------------------- /installer/BrowseMonkey.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/installer/BrowseMonkey.nsi -------------------------------------------------------------------------------- /installer/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/installer/build.bat -------------------------------------------------------------------------------- /src/BrowseMonkey.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey.sln -------------------------------------------------------------------------------- /src/BrowseMonkey/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/App.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/ApplicationConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/ApplicationConsole.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/ApplicationConsole.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/ApplicationConsole.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/BrowseMonkey.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/BrowseMonkey.csproj -------------------------------------------------------------------------------- /src/BrowseMonkey/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Constants.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Enums.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/ExportViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/ExportViewer.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/ExportViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/ExportViewer.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/FileListExportDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/FileListExportDialog.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/FileListExportDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/FileListExportDialog.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/FormFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/FormFactory.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/FormFinderLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/FormFinderLib.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/IDirty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/IDirty.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/ISpawned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/ISpawned.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/MainForm.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/MainForm.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/About.txt -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/ChangeLog.txt -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Credits.txt -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/LinkLockerIcons/brokenLink.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/LinkLockerIcons/brokenLink.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/LinkLockerIcons/folder_Closed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/LinkLockerIcons/folder_Closed.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/LinkLockerIcons/folder_Open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/LinkLockerIcons/folder_Open.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/LinkLockerIcons/link.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/LinkLockerIcons/link.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/aboutTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/aboutTop.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/appIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/appIcon.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/clip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/clip.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/close.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/close.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/close001_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/close001_16x16.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/columns_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/columns_001.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/copy.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/down001_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/down001_16x16.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/minus001_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/minus001_16x16.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/root.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/root.ICO -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/save.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/save.ico -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/save.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/splash.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/up001_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/up001_16x16.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/cd.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/cdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/cdr.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/cdrw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/cdrw.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/diskette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/diskette.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/dvd.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/dvdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/dvdr.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/dvdrw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/dvdrw.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/firewiredrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/firewiredrive.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/harddisk.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/netdrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/netdrive.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/tape.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/unknown.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/usbdrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/usbdrive.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Images/volumeIcons/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Images/volumeIcons/zip.png -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/PromptContents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/PromptContents.xml -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/aboutContents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/aboutContents.xml -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/listviewConfigs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/listviewConfigs.xml -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/styleSheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/styleSheet.xml -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/treeIconLoadList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/treeIconLoadList.xml -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/volumeDataFormat.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/volumeDataFormat.xsd -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/volumeDataFormat.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/volumeDataFormat.xsx -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/volumeIndexFormat.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/volumeIndexFormat.xsd -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/volumeIndexFormat.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/volumeIndexFormat.xsx -------------------------------------------------------------------------------- /src/BrowseMonkey/Resources/Xml/volumeTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/Resources/Xml/volumeTypes.xml -------------------------------------------------------------------------------- /src/BrowseMonkey/SearchArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/SearchArguments.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/SearchArguments.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/SearchArguments.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/SearchDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/SearchDialog.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/SearchDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/SearchDialog.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/SearchResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/SearchResults.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/SearchResults.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/SearchResults.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/TextExportDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/TextExportDialog.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/TextExportDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/TextExportDialog.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumeBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumeBrowser.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumeBrowser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumeBrowser.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumeConvertDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumeConvertDialog.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumeConvertDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumeConvertDialog.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumeCreateDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumeCreateDialog.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumeCreateDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumeCreateDialog.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumePathSelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumePathSelectDialog.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumePathSelectDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumePathSelectDialog.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumeProperties.cs -------------------------------------------------------------------------------- /src/BrowseMonkey/VolumeProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/VolumeProperties.resx -------------------------------------------------------------------------------- /src/BrowseMonkey/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/app.config -------------------------------------------------------------------------------- /src/BrowseMonkey/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkey/packages.config -------------------------------------------------------------------------------- /src/BrowseMonkeyData/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyData/BrowseMonkeyData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/BrowseMonkeyData.csproj -------------------------------------------------------------------------------- /src/BrowseMonkeyData/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/Constants.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyData/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/Enums.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyData/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/Volume.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyData/Volume101.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/Volume101.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyData/VolumeConversionLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/VolumeConversionLib.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyData/VolumeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/VolumeException.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyData/VolumeIdentificationLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/VolumeIdentificationLib.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyData/volumeDataFormat.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/volumeDataFormat.xsd -------------------------------------------------------------------------------- /src/BrowseMonkeyData/volumeDataFormat.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/volumeDataFormat.xsx -------------------------------------------------------------------------------- /src/BrowseMonkeyData/volumeDataFormat101.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/volumeDataFormat101.xsd -------------------------------------------------------------------------------- /src/BrowseMonkeyData/volumeDataFormat101.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/volumeDataFormat101.xsx -------------------------------------------------------------------------------- /src/BrowseMonkeyData/volumeIndexFormat.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/volumeIndexFormat.xsd -------------------------------------------------------------------------------- /src/BrowseMonkeyData/volumeIndexFormat.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/volumeIndexFormat.xsx -------------------------------------------------------------------------------- /src/BrowseMonkeyData/volumeIndexFormat101.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/volumeIndexFormat101.xsd -------------------------------------------------------------------------------- /src/BrowseMonkeyData/volumeIndexFormat101.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyData/volumeIndexFormat101.xsx -------------------------------------------------------------------------------- /src/BrowseMonkeyUnitTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyUnitTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyUnitTest/BrowseMonkeyUnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyUnitTest/BrowseMonkeyUnitTest.csproj -------------------------------------------------------------------------------- /src/BrowseMonkeyUnitTest/SearchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyUnitTest/SearchTest.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyVolumesUnitTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyVolumesUnitTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyVolumesUnitTest/BMVolumeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyVolumesUnitTest/BMVolumeTest.cs -------------------------------------------------------------------------------- /src/BrowseMonkeyVolumesUnitTest/BrowseMonkeyDataUnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/BrowseMonkeyVolumesUnitTest/BrowseMonkeyDataUnitTest.csproj -------------------------------------------------------------------------------- /src/FSXml/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FSXml/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/Enums.cs -------------------------------------------------------------------------------- /src/FSXml/FSXml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/FSXml.csproj -------------------------------------------------------------------------------- /src/FSXml/FSXmlFileListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/FSXmlFileListBuilder.cs -------------------------------------------------------------------------------- /src/FSXml/FSXmlLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/FSXmlLib.cs -------------------------------------------------------------------------------- /src/FSXml/FSXmlTextExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/FSXmlTextExporter.cs -------------------------------------------------------------------------------- /src/FSXml/FSXmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/FSXmlWriter.cs -------------------------------------------------------------------------------- /src/FSXml/ReadError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/ReadError.cs -------------------------------------------------------------------------------- /src/FSXml/SharpZipWrapperLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/SharpZipWrapperLib.cs -------------------------------------------------------------------------------- /src/FSXml/StreamUncompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/StreamUncompressor.cs -------------------------------------------------------------------------------- /src/FSXml/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXml/packages.config -------------------------------------------------------------------------------- /src/FSXmlUnitTest/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlUnitTest/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FSXmlUnitTest/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlUnitTest/Constants.cs -------------------------------------------------------------------------------- /src/FSXmlUnitTest/FSXmlLibTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlUnitTest/FSXmlLibTest.cs -------------------------------------------------------------------------------- /src/FSXmlUnitTest/FSXmlUnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlUnitTest/FSXmlUnitTest.csproj -------------------------------------------------------------------------------- /src/FSXmlUnitTest/FsXmlFileListBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlUnitTest/FsXmlFileListBuilderTest.cs -------------------------------------------------------------------------------- /src/FSXmlUnitTest/FsXmlWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlUnitTest/FsXmlWriterTest.cs -------------------------------------------------------------------------------- /src/FSXmlWinUI/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FSXmlWinUI/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/Enums.cs -------------------------------------------------------------------------------- /src/FSXmlWinUI/FSXmlExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/FSXmlExplorer.cs -------------------------------------------------------------------------------- /src/FSXmlWinUI/FSXmlExplorer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/FSXmlExplorer.resx -------------------------------------------------------------------------------- /src/FSXmlWinUI/FSXmlTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/FSXmlTreeNode.cs -------------------------------------------------------------------------------- /src/FSXmlWinUI/FSXmlTreeViewFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/FSXmlTreeViewFiller.cs -------------------------------------------------------------------------------- /src/FSXmlWinUI/FSXmlWinUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/FSXmlWinUI.csproj -------------------------------------------------------------------------------- /src/FSXmlWinUI/Resources/FileSelected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/Resources/FileSelected.ico -------------------------------------------------------------------------------- /src/FSXmlWinUI/Resources/FileUnselected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/Resources/FileUnselected.ico -------------------------------------------------------------------------------- /src/FSXmlWinUI/Resources/FolderSelected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/Resources/FolderSelected.ico -------------------------------------------------------------------------------- /src/FSXmlWinUI/Resources/FolderUnselected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/Resources/FolderUnselected.ico -------------------------------------------------------------------------------- /src/FSXmlWinUI/Resources/ListviewConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/FSXmlWinUI/Resources/ListviewConfig.xml -------------------------------------------------------------------------------- /src/vcFramework/Arrays/ArrayLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Arrays/ArrayLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Arrays/ByteArrayLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Arrays/ByteArrayLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Arrays/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Arrays/Enums.cs -------------------------------------------------------------------------------- /src/vcFramework/Arrays/StringArrayLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Arrays/StringArrayLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Assemblies/AssemblyAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Assemblies/AssemblyAccessor.cs -------------------------------------------------------------------------------- /src/vcFramework/Assemblies/AssemblyLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Assemblies/AssemblyLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Collections/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Collections/Enums.cs -------------------------------------------------------------------------------- /src/vcFramework/Collections/FSLinksCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Collections/FSLinksCollection.cs -------------------------------------------------------------------------------- /src/vcFramework/CommonResources/Icons/OPENFOLD.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/CommonResources/Icons/OPENFOLD.ICO -------------------------------------------------------------------------------- /src/vcFramework/DataItems/ByteSizeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/DataItems/ByteSizeItem.cs -------------------------------------------------------------------------------- /src/vcFramework/DataItems/StringItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/DataItems/StringItem.cs -------------------------------------------------------------------------------- /src/vcFramework/Delegates/DelegateLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Delegates/DelegateLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Delegates/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Delegates/Delegates.cs -------------------------------------------------------------------------------- /src/vcFramework/Diagnostics/ProcessLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Diagnostics/ProcessLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Drawing/DrawingLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Drawing/DrawingLib.cs -------------------------------------------------------------------------------- /src/vcFramework/ErrorHandlers/ByteSizeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/ErrorHandlers/ByteSizeException.cs -------------------------------------------------------------------------------- /src/vcFramework/ErrorHandlers/LogFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/ErrorHandlers/LogFileException.cs -------------------------------------------------------------------------------- /src/vcFramework/IO/FileSystemLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/IO/FileSystemLib.cs -------------------------------------------------------------------------------- /src/vcFramework/IO/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/IO/Logger.cs -------------------------------------------------------------------------------- /src/vcFramework/IO/MappingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/IO/MappingException.cs -------------------------------------------------------------------------------- /src/vcFramework/IO/RandomFSItemPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/IO/RandomFSItemPicker.cs -------------------------------------------------------------------------------- /src/vcFramework/IO/Streams/StreamSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/IO/Streams/StreamSplitter.cs -------------------------------------------------------------------------------- /src/vcFramework/IO/Streams/StreamsLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/IO/Streams/StreamsLib.cs -------------------------------------------------------------------------------- /src/vcFramework/IProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/IProgress.cs -------------------------------------------------------------------------------- /src/vcFramework/IStateManageable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/IStateManageable.cs -------------------------------------------------------------------------------- /src/vcFramework/Interop/StringMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Interop/StringMessageEventArgs.cs -------------------------------------------------------------------------------- /src/vcFramework/Interop/StringMessenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Interop/StringMessenger.cs -------------------------------------------------------------------------------- /src/vcFramework/Maths/AggregationLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Maths/AggregationLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Parsers/ParserLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Parsers/ParserLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Parsers/StringFormatLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Parsers/StringFormatLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Parsers/StringTypeTestLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Parsers/StringTypeTestLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/vcFramework/RandomItems/RandomLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/RandomItems/RandomLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Serialization/SerializeLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Serialization/SerializeLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Text/StringSortLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Text/StringSortLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Text/TextConvertLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Text/TextConvertLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Threads/ThreadCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Threads/ThreadCollection.cs -------------------------------------------------------------------------------- /src/vcFramework/Time/DateTimeLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Time/DateTimeLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Time/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Time/Enums.cs -------------------------------------------------------------------------------- /src/vcFramework/UserControls/MessageConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/UserControls/MessageConsole.cs -------------------------------------------------------------------------------- /src/vcFramework/UserControls/MessageConsole.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/UserControls/MessageConsole.resx -------------------------------------------------------------------------------- /src/vcFramework/UserControls/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/UserControls/close.png -------------------------------------------------------------------------------- /src/vcFramework/UserControls/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/UserControls/editcopy.png -------------------------------------------------------------------------------- /src/vcFramework/UserControls/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/UserControls/filesave.png -------------------------------------------------------------------------------- /src/vcFramework/UserControls/filesaveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/UserControls/filesaveas.png -------------------------------------------------------------------------------- /src/vcFramework/UserControls/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/UserControls/info.png -------------------------------------------------------------------------------- /src/vcFramework/UserControls/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/UserControls/trash.png -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/AboutForm.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/AboutForm.resx -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ColumnHeaderSP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ColumnHeaderSP.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ColumnHeaderSP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ColumnHeaderSP.resx -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ColumnStringSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ColumnStringSorter.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ComboBoxDataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ComboBoxDataItem.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/DisplayValueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/DisplayValueItem.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/FormLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/FormLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ListBoxLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ListBoxLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ListViewItemSP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ListViewItemSP.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ListViewSP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ListViewSP.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ListViewSP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ListViewSP.resx -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/PanelGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/PanelGallery.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/PanelGallery.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/PanelGallery.resx -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/PanelGalleryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/PanelGalleryCollection.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/PanelGalleryItemAddedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/PanelGalleryItemAddedEventArgs.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/ProgressBarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/ProgressBarHelper.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/PromptLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/PromptLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/SignOfLife.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/SignOfLife.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/SignOfLife.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/SignOfLife.resx -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/Splash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/Splash.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/Splash.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/Splash.resx -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/TimedProgressBarAdvancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/TimedProgressBarAdvancer.cs -------------------------------------------------------------------------------- /src/vcFramework/Windows/Forms/TreeViewNodeExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Windows/Forms/TreeViewNodeExpander.cs -------------------------------------------------------------------------------- /src/vcFramework/Xml/StateHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Xml/StateHolder.cs -------------------------------------------------------------------------------- /src/vcFramework/Xml/XmlLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Xml/XmlLib.cs -------------------------------------------------------------------------------- /src/vcFramework/Xml/XmlSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Xml/XmlSearch.cs -------------------------------------------------------------------------------- /src/vcFramework/Xml/XmlSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Xml/XmlSearchResult.cs -------------------------------------------------------------------------------- /src/vcFramework/Xml/XmlValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Xml/XmlValidator.cs -------------------------------------------------------------------------------- /src/vcFramework/Xml/XmlValidatorLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/Xml/XmlValidatorLib.cs -------------------------------------------------------------------------------- /src/vcFramework/vcFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shukriadams/browsemonkey/HEAD/src/vcFramework/vcFramework.csproj --------------------------------------------------------------------------------