├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── EveImSync.sln ├── docs ├── evimsync.pdn └── logo.png ├── evernote2onenote ├── Evernote2Onenote.sln └── src │ ├── Attachment.cs │ ├── Enums │ ├── NoteAction.cs │ └── SyncStep.cs │ ├── Evernote2Onenote.csproj │ ├── HTMLAgilityPack │ ├── GetDocLinks │ │ ├── GetDocLinks VS2008.csproj │ │ ├── GetDocLinks.cs │ │ ├── GetDocLinks.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── HAPCompact │ │ ├── CompactExtensions.cs │ │ ├── DebuggerDisplayAttribute.cs │ │ └── HAPCompact.csproj │ ├── HAPExplorer │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Extensions.cs │ │ ├── HAPExplorer.csproj │ │ ├── HtmlAttributeViewer.xaml │ │ ├── HtmlAttributeViewer.xaml.cs │ │ ├── HtmlNodeViewer.xaml │ │ ├── HtmlNodeViewer.xaml.cs │ │ ├── NodeTreeView.xaml │ │ ├── NodeTreeView.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Settings.cs │ │ ├── UrlDialog.xaml │ │ ├── UrlDialog.xaml.cs │ │ ├── Window1.xaml │ │ ├── Window1.xaml.cs │ │ ├── app.config │ │ └── mshome.htm │ ├── HAPLight │ │ ├── HAPLight.csproj │ │ ├── HtmlDocumentLoadCompleted.cs │ │ ├── HtmlWeb.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SilverlightExtensions.cs │ │ └── Trace.Silverlight.cs │ ├── HAPLight2010.sln │ ├── Html2Rss │ │ ├── Html2Rss VS2008.csproj │ │ ├── Html2Rss.cs │ │ ├── Html2Rss.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── www.asp.net.ToRss.xsl │ ├── Html2Txt │ │ ├── Html2Txt VS2008.csproj │ │ ├── Html2Txt.cs │ │ ├── Html2Txt.csproj │ │ ├── HtmlConvert.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── mshome.htm │ ├── Html2Xml │ │ ├── Html2Xml VS2008.csproj │ │ ├── Html2Xml.cs │ │ ├── Html2Xml.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── mshome.htm │ ├── HtmlAgilityPack.Tests │ │ ├── DynamicTests.cs │ │ ├── HtmlAgilityPack.Tests.csproj │ │ ├── HtmlAgilityPack.Tests.csproj.user │ │ ├── HtmlDocumentTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── files │ │ │ └── mshome.htm │ │ └── mshome.htm │ ├── HtmlAgilityPack │ │ ├── EncodingFoundException.cs │ │ ├── HtmlAgilityPack VS2008.csproj │ │ ├── HtmlAgilityPack.csproj │ │ ├── HtmlAgilityPack.fx.4.0.csproj │ │ ├── HtmlAgilityPack.snk │ │ ├── HtmlAttribute.cs │ │ ├── HtmlAttributeCollection.cs │ │ ├── HtmlCmdLine.cs │ │ ├── HtmlCommentNode.cs │ │ ├── HtmlConsoleListener.cs │ │ ├── HtmlDocument.Xpath.cs │ │ ├── HtmlDocument.cs │ │ ├── HtmlElementFlag.cs │ │ ├── HtmlEntity.cs │ │ ├── HtmlNameTable.cs │ │ ├── HtmlNode.Dynamic.cs │ │ ├── HtmlNode.Xpath.cs │ │ ├── HtmlNode.cs │ │ ├── HtmlNodeCollection.cs │ │ ├── HtmlNodeNavigator.cs │ │ ├── HtmlNodeType.cs │ │ ├── HtmlParseError.cs │ │ ├── HtmlParseErrorCode.cs │ │ ├── HtmlTextNode.cs │ │ ├── HtmlWeb.Xpath.cs │ │ ├── HtmlWeb.cs │ │ ├── HtmlWebException.cs │ │ ├── IOLibrary.cs │ │ ├── MixedCodeDocument.cs │ │ ├── MixedCodeDocumentCodeFragment.cs │ │ ├── MixedCodeDocumentFragment.cs │ │ ├── MixedCodeDocumentFragmentList.cs │ │ ├── MixedCodeDocumentFragmentType.cs │ │ ├── MixedCodeDocumentTextFragment.cs │ │ ├── NameValuePair.cs │ │ ├── NameValuePairList.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Trace.FullFramework.cs │ │ ├── Trace.cs │ │ ├── Utilities.cs │ │ └── crc32.cs │ ├── HtmlAgilityPack2008.sln │ ├── HtmlAgilityPack2010.sln │ ├── HtmlAgilityPackDocumentation.shfbproj │ └── readme.txt │ ├── MainFrm.Designer.cs │ ├── MainFrm.cs │ ├── MainFrm.resx │ ├── Note.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.tmpl │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── prebuild.ps1 │ ├── RFC2047Decoder.cs │ ├── Settings.cs │ ├── XmlSanitizer.cs │ ├── app.config │ ├── evernote2onenote.ico │ ├── evernote2onenote.pdn │ ├── evernote2onenote.png │ └── packages.config └── src ├── Attachment.cs ├── ConfigFrm.Designer.cs ├── ConfigFrm.cs ├── ConfigFrm.resx ├── Configuration.cs ├── ENScriptWrapper.cs ├── Enums ├── NoteAction.cs └── SyncStep.cs ├── EveImSync.csproj ├── HTMLAgilityPack ├── GetDocLinks │ ├── GetDocLinks VS2008.csproj │ ├── GetDocLinks VS2008.csproj.vspscc │ ├── GetDocLinks.cs │ ├── GetDocLinks.csproj │ ├── GetDocLinks.csproj.vspscc │ └── Properties │ │ └── AssemblyInfo.cs ├── HAPCompact │ ├── CompactExtensions.cs │ ├── DebuggerDisplayAttribute.cs │ └── HAPCompact.csproj ├── HAPExplorer │ ├── App.xaml │ ├── App.xaml.cs │ ├── Extensions.cs │ ├── HAPExplorer.csproj │ ├── HtmlAttributeViewer.xaml │ ├── HtmlAttributeViewer.xaml.cs │ ├── HtmlNodeViewer.xaml │ ├── HtmlNodeViewer.xaml.cs │ ├── NodeTreeView.xaml │ ├── NodeTreeView.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Settings.cs │ ├── UrlDialog.xaml │ ├── UrlDialog.xaml.cs │ ├── Window1.xaml │ ├── Window1.xaml.cs │ ├── app.config │ └── mshome.htm ├── HAPLight │ ├── HAPLight.csproj │ ├── HtmlDocumentLoadCompleted.cs │ ├── HtmlWeb.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SilverlightExtensions.cs │ └── Trace.Silverlight.cs ├── HAPLight2010.sln ├── Html2Rss │ ├── Html2Rss VS2008.csproj │ ├── Html2Rss VS2008.csproj.vspscc │ ├── Html2Rss.cs │ ├── Html2Rss.csproj │ ├── Html2Rss.csproj.vspscc │ ├── Properties │ │ └── AssemblyInfo.cs │ └── www.asp.net.ToRss.xsl ├── Html2Txt │ ├── Html2Txt VS2008.csproj │ ├── Html2Txt VS2008.csproj.vspscc │ ├── Html2Txt.cs │ ├── Html2Txt.csproj │ ├── Html2Txt.csproj.vspscc │ ├── HtmlConvert.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── mshome.htm ├── Html2Xml │ ├── Html2Xml VS2008.csproj │ ├── Html2Xml VS2008.csproj.vspscc │ ├── Html2Xml.cs │ ├── Html2Xml.csproj │ ├── Html2Xml.csproj.vspscc │ ├── Properties │ │ └── AssemblyInfo.cs │ └── mshome.htm ├── HtmlAgilityPack VS2008.vssscc ├── HtmlAgilityPack.Tests │ ├── DynamicTests.cs │ ├── HtmlAgilityPack.Tests.csproj │ ├── HtmlAgilityPack.Tests.csproj.user │ ├── HtmlDocumentTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── files │ │ └── mshome.htm │ └── mshome.htm ├── HtmlAgilityPack.vssscc ├── HtmlAgilityPack │ ├── EncodingFoundException.cs │ ├── HtmlAgilityPack VS2008.csproj │ ├── HtmlAgilityPack.csproj │ ├── HtmlAgilityPack.csproj.vspscc │ ├── HtmlAgilityPack.fx.4.0.csproj │ ├── HtmlAgilityPack.snk │ ├── HtmlAttribute.cs │ ├── HtmlAttributeCollection.cs │ ├── HtmlCmdLine.cs │ ├── HtmlCommentNode.cs │ ├── HtmlConsoleListener.cs │ ├── HtmlDocument.Xpath.cs │ ├── HtmlDocument.cs │ ├── HtmlElementFlag.cs │ ├── HtmlEntity.cs │ ├── HtmlNameTable.cs │ ├── HtmlNode.Dynamic.cs │ ├── HtmlNode.Xpath.cs │ ├── HtmlNode.cs │ ├── HtmlNodeCollection.cs │ ├── HtmlNodeNavigator.cs │ ├── HtmlNodeType.cs │ ├── HtmlParseError.cs │ ├── HtmlParseErrorCode.cs │ ├── HtmlTextNode.cs │ ├── HtmlWeb.Xpath.cs │ ├── HtmlWeb.cs │ ├── HtmlWebException.cs │ ├── IOLibrary.cs │ ├── MixedCodeDocument.cs │ ├── MixedCodeDocumentCodeFragment.cs │ ├── MixedCodeDocumentFragment.cs │ ├── MixedCodeDocumentFragmentList.cs │ ├── MixedCodeDocumentFragmentType.cs │ ├── MixedCodeDocumentTextFragment.cs │ ├── NameValuePair.cs │ ├── NameValuePairList.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ ├── Trace.FullFramework.cs │ ├── Trace.cs │ ├── Utilities.cs │ └── crc32.cs ├── HtmlAgilityPack2008.sln ├── HtmlAgilityPack2010.sln ├── HtmlAgilityPackDocumentation.shfbproj └── readme.txt ├── InterIMAP ├── BuildProcessTemplates │ ├── DefaultTemplate.xaml │ └── UpgradeTemplate.xaml ├── InterIMAP-Async │ ├── CSharpOptParse │ │ ├── AssemblyInfo.cs │ │ ├── CSharpOptParse.csproj │ │ ├── CSharpOptParse.csproj.vspscc │ │ ├── ConsoleUtils │ │ │ └── ConsoleHelper.cs │ │ └── OptParse │ │ │ ├── Attributes.cs │ │ │ ├── DefaultUsageInfo.cs │ │ │ ├── Delegates.cs │ │ │ ├── Enumerations.cs │ │ │ ├── Exceptions.cs │ │ │ ├── IOptionContainer.cs │ │ │ ├── IOptionResults.cs │ │ │ ├── IProgUsageInfo.cs │ │ │ ├── OptionDefinition.cs │ │ │ ├── OptionResult.cs │ │ │ ├── OptionResultsDictionary.cs │ │ │ ├── ParseHelpers.cs │ │ │ ├── Parser.cs │ │ │ ├── UsageBuilder.cs │ │ │ └── Xslt │ │ │ ├── Html.xslt │ │ │ └── Text.xslt │ ├── ConfigGenerator │ │ ├── ConfigGenerator.csproj │ │ ├── ConfigGenerator.csproj.vspscc │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConfigGeneratorWin │ │ ├── ConfigGeneratorWin.csproj │ │ ├── ConfigGeneratorWin.csproj.vspscc │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── IMAPShell │ │ ├── Attributes │ │ │ ├── CommandInfoAttribute.cs │ │ │ └── RequiresConnectionAttribute.cs │ │ ├── Commands │ │ │ ├── BaseCommand.cs │ │ │ ├── ChangeFolderCommand.cs │ │ │ ├── ClearCommand.cs │ │ │ ├── ConnectCommand.cs │ │ │ ├── CreateFolderCommand.cs │ │ │ ├── DeleteCommand.cs │ │ │ ├── ExitCommand.cs │ │ │ ├── FolderListCommand.cs │ │ │ ├── GetNewMessagesCommand.cs │ │ │ ├── HelpCommand.cs │ │ │ ├── LoadConfigCommand.cs │ │ │ ├── MessageListCommand.cs │ │ │ ├── MoveFolderCommand.cs │ │ │ ├── PasswordCommand.cs │ │ │ ├── PrintConfigCommand.cs │ │ │ ├── PrintResultCommand.cs │ │ │ ├── RenameCommand.cs │ │ │ ├── SSLCommand.cs │ │ │ ├── SaveConfigCommand.cs │ │ │ ├── ServerCommand.cs │ │ │ └── UsernameCommand.cs │ │ ├── Enums │ │ │ └── ResultType.cs │ │ ├── Helpers │ │ │ ├── ArgumentParser.cs │ │ │ ├── Arguments.cs │ │ │ ├── ColorConsole.cs │ │ │ ├── GetLine.cs │ │ │ └── PasswordInput.cs │ │ ├── IMAPShell.csproj │ │ ├── IMAPShell.csproj.vspscc │ │ ├── Interfaces │ │ │ └── ICommand.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Shell │ │ │ ├── CommandResult.cs │ │ │ └── IMAPShell.cs │ │ └── app.config │ ├── InterIMAP.sln │ ├── InterIMAP.vssscc │ ├── InterIMAP │ │ ├── Asynchronous │ │ │ ├── Client │ │ │ │ ├── IMAPAsyncClient.cs │ │ │ │ ├── IMAPConnection.cs │ │ │ │ ├── IMAPConnectionPool.cs │ │ │ │ ├── IMAPConnectionWorker.cs │ │ │ │ ├── IMAPMailboxManager.cs │ │ │ │ └── IMAPRequestManager.cs │ │ │ ├── Helpers │ │ │ │ ├── LoggerAggregator.cs │ │ │ │ └── WorkerLogger.cs │ │ │ └── Objects │ │ │ │ ├── Contact.cs │ │ │ │ ├── Folder.cs │ │ │ │ ├── Message.cs │ │ │ │ └── MessageContent.cs │ │ ├── Common │ │ │ ├── Attributes │ │ │ │ ├── ConnectingTable.cs │ │ │ │ ├── HeaderName.cs │ │ │ │ └── LinkToTable.cs │ │ │ ├── BatchRequests │ │ │ │ └── BaseBatchRequest.cs │ │ │ ├── Commands │ │ │ │ ├── AppendCommand.cs │ │ │ │ ├── BaseCommand.cs │ │ │ │ ├── CapabilityCommand.cs │ │ │ │ ├── ChangeFlagCommand.cs │ │ │ │ ├── CommandResult.cs │ │ │ │ ├── CopyMessageCommand.cs │ │ │ │ ├── CreateFolderCommand.cs │ │ │ │ ├── CustomCommand.cs │ │ │ │ ├── ExamineFolderCommand.cs │ │ │ │ ├── ExpungeCommand.cs │ │ │ │ ├── FolderListCommand.cs │ │ │ │ ├── HeartBeatCommand.cs │ │ │ │ ├── LoginCommand.cs │ │ │ │ ├── MessageFlagCommand.cs │ │ │ │ ├── MessageHeaderCommand.cs │ │ │ │ ├── MessageListCommand.cs │ │ │ │ ├── MessagePartCommand.cs │ │ │ │ ├── MessageStructureCommand.cs │ │ │ │ ├── SearchCommand.cs │ │ │ │ ├── SearchCriteria.cs │ │ │ │ └── SelectFolderCommand.cs │ │ │ ├── Data │ │ │ │ ├── DataManager.cs │ │ │ │ ├── Mailbox.Designer.cs │ │ │ │ ├── Mailbox.cs │ │ │ │ ├── Mailbox.xsc │ │ │ │ ├── Mailbox.xsd │ │ │ │ ├── Mailbox.xss │ │ │ │ ├── Mailbox1.Designer.cs │ │ │ │ └── ZipStorer.cs │ │ │ ├── Enums │ │ │ │ ├── IMAPError.cs │ │ │ │ ├── IMAPResponse.cs │ │ │ │ ├── LogType.cs │ │ │ │ ├── MailboxType.cs │ │ │ │ ├── MessageFlag.cs │ │ │ │ └── MessageListDirection.cs │ │ │ ├── IMAPConfig.cs │ │ │ ├── IMAPException.cs │ │ │ ├── IMAPLogger.cs │ │ │ ├── Interfaces │ │ │ │ ├── IBaseObject.cs │ │ │ │ ├── IBatchRequest.cs │ │ │ │ ├── ICommand.cs │ │ │ │ ├── IContact.cs │ │ │ │ ├── IFolder.cs │ │ │ │ ├── IMessage.cs │ │ │ │ ├── IMessageContent.cs │ │ │ │ ├── IProcessor.cs │ │ │ │ └── IRequest.cs │ │ │ ├── Processors │ │ │ │ ├── AppendProcessor.cs │ │ │ │ ├── BaseProcessor.cs │ │ │ │ ├── ChangeFlagProcessor.cs │ │ │ │ ├── CopyMessageProcessor.cs │ │ │ │ ├── CreateFolderProcessor.cs │ │ │ │ ├── FolderDataProcessor.cs │ │ │ │ ├── FolderListProcessor.cs │ │ │ │ ├── LoginProcessor.cs │ │ │ │ ├── MessageFlagProcessor.cs │ │ │ │ ├── MessageHeaderProcessor.cs │ │ │ │ ├── MessageListProcessor.cs │ │ │ │ ├── MessagePartProcessor.cs │ │ │ │ ├── MessageStructureProcessor.cs │ │ │ │ └── SearchProcessor.cs │ │ │ └── Requests │ │ │ │ ├── AppendRequest.cs │ │ │ │ ├── AsyncBatchRequest.cs │ │ │ │ ├── BaseRequest.cs │ │ │ │ ├── ChangeFlagRequest.cs │ │ │ │ ├── CopyMessageRequest.cs │ │ │ │ ├── CreateFolderRequest.cs │ │ │ │ ├── DeleteFolderRequest.cs │ │ │ │ ├── DeleteMessageRequest.cs │ │ │ │ ├── FolderDataRequest.cs │ │ │ │ ├── FolderTreeRequest.cs │ │ │ │ ├── FullMessageRequest.cs │ │ │ │ ├── MessageFlagRequest.cs │ │ │ │ ├── MessageHeaderRequest.cs │ │ │ │ ├── MessageListRequest.cs │ │ │ │ ├── MessagePartRequest.cs │ │ │ │ ├── MessageStructureRequest.cs │ │ │ │ ├── MoveFolderRequest.cs │ │ │ │ ├── MoveMessageRequest.cs │ │ │ │ ├── NewMessagesRequest.cs │ │ │ │ ├── RenameFolderRequest.cs │ │ │ │ ├── SearchRequest.cs │ │ │ │ └── SimpleBatchRequest.cs │ │ ├── Diagram │ │ │ └── LibraryDagram.cd │ │ ├── InterIMAP.csproj │ │ ├── InterIMAP.csproj.vspscc │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Settings.StyleCop │ │ └── Synchronous │ │ │ ├── Client │ │ │ ├── IMAP.cs │ │ │ ├── IMAPBase.cs │ │ │ └── IMAPClient.cs │ │ │ └── Objects │ │ │ ├── IMAPFileAttachment.cs │ │ │ ├── IMAPFolder.cs │ │ │ ├── IMAPFolderCollection.cs │ │ │ ├── IMAPFolderQuota.cs │ │ │ ├── IMAPMailAddress.cs │ │ │ ├── IMAPMessage.cs │ │ │ ├── IMAPMessageCollection.cs │ │ │ ├── IMAPMessageContent.cs │ │ │ ├── IMAPMessageFlags.cs │ │ │ ├── IMAPSearchQuery.cs │ │ │ └── IMAPSearchResult.cs │ ├── InterIMAPBodyParsePrototype │ │ ├── InterIMAPBodyParsePrototype.csproj │ │ ├── InterIMAPBodyParsePrototype.csproj.vspscc │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── InterIMAPConsoleTest │ │ ├── InterIMAPConsoleTest.csproj │ │ ├── InterIMAPConsoleTest.csproj.vspscc │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── InterIMAPGUITest │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── InterIMAPGUITest.csproj │ │ ├── InterIMAPGUITest.csproj.vspscc │ │ ├── MessageViewer.Designer.cs │ │ ├── MessageViewer.cs │ │ ├── MessageViewer.resx │ │ ├── Program.cs │ │ ├── ProgressWindow.Designer.cs │ │ ├── ProgressWindow.cs │ │ ├── ProgressWindow.resx │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── InterIMAP │ ├── ConfigGenerator │ │ ├── ConfigGenerator.csproj │ │ ├── ConfigGenerator.csproj.vspscc │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ConfigGeneratorWin │ │ ├── ConfigGeneratorWin.csproj │ │ ├── ConfigGeneratorWin.csproj.vspscc │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── InterIMAP.sln │ ├── InterIMAP.vssscc │ ├── InterIMAP │ │ ├── Client │ │ │ ├── IMAP.cs │ │ │ ├── IMAPBase.cs │ │ │ ├── IMAPException.cs │ │ │ └── IMAPLogger.cs │ │ ├── Diagram │ │ │ └── InterIMAP.Diagram.cd │ │ ├── InterIMAP.csproj │ │ ├── InterIMAP.csproj.vspscc │ │ ├── Objects │ │ │ ├── IMAPFileAttachment.cs │ │ │ ├── IMAPFolder.cs │ │ │ ├── IMAPFolderCollection.cs │ │ │ ├── IMAPFolderQuota.cs │ │ │ ├── IMAPMailAddress.cs │ │ │ ├── IMAPMessage.cs │ │ │ ├── IMAPMessageCollection.cs │ │ │ ├── IMAPMessageContent.cs │ │ │ ├── IMAPMessageFlags.cs │ │ │ ├── IMAPSearchQuery.cs │ │ │ └── IMAPSearchResult.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Wrapper │ │ │ ├── IMAPClient.cs │ │ │ └── IMAPConfig.cs │ └── InterIMAPConsoleTest │ │ ├── InterIMAPConsoleTest.csproj │ │ ├── InterIMAPConsoleTest.csproj.vspscc │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── readme.txt ├── MailMessageExt.cs ├── MainFrm.Designer.cs ├── MainFrm.cs ├── MainFrm.resx ├── Note.cs ├── Program.cs ├── Properties ├── AssemblyInfo.tmpl ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Settings.StyleCop ├── Settings.cs ├── SimpleAES.cs ├── SyncPairSettings.cs ├── XmlSanitizer.cs ├── app.config └── evimsync.ico /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/.gitignore -------------------------------------------------------------------------------- /EveImSync.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/EveImSync.sln -------------------------------------------------------------------------------- /docs/evimsync.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/docs/evimsync.pdn -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/docs/logo.png -------------------------------------------------------------------------------- /evernote2onenote/Evernote2Onenote.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/Evernote2Onenote.sln -------------------------------------------------------------------------------- /evernote2onenote/src/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Attachment.cs -------------------------------------------------------------------------------- /evernote2onenote/src/Enums/NoteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Enums/NoteAction.cs -------------------------------------------------------------------------------- /evernote2onenote/src/Enums/SyncStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Enums/SyncStep.cs -------------------------------------------------------------------------------- /evernote2onenote/src/Evernote2Onenote.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Evernote2Onenote.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/GetDocLinks/GetDocLinks VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/GetDocLinks/GetDocLinks VS2008.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/GetDocLinks/GetDocLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/GetDocLinks/GetDocLinks.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/GetDocLinks/GetDocLinks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/GetDocLinks/GetDocLinks.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/GetDocLinks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/GetDocLinks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPCompact/CompactExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPCompact/CompactExtensions.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPCompact/DebuggerDisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPCompact/DebuggerDisplayAttribute.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPCompact/HAPCompact.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPCompact/HAPCompact.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/App.xaml -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/App.xaml.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Extensions.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HAPExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HAPExplorer.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HtmlAttributeViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HtmlAttributeViewer.xaml -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HtmlAttributeViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HtmlAttributeViewer.xaml.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HtmlNodeViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HtmlNodeViewer.xaml -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HtmlNodeViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/HtmlNodeViewer.xaml.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/NodeTreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/NodeTreeView.xaml -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/NodeTreeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/NodeTreeView.xaml.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Settings.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/UrlDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/UrlDialog.xaml -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/UrlDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/UrlDialog.xaml.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Window1.xaml -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/Window1.xaml.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/app.config -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPExplorer/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPExplorer/mshome.htm -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPLight/HAPLight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPLight/HAPLight.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPLight/HtmlDocumentLoadCompleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPLight/HtmlDocumentLoadCompleted.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPLight/HtmlWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPLight/HtmlWeb.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPLight/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPLight/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPLight/SilverlightExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPLight/SilverlightExtensions.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPLight/Trace.Silverlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPLight/Trace.Silverlight.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HAPLight2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HAPLight2010.sln -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Rss/Html2Rss VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Rss/Html2Rss VS2008.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Rss/Html2Rss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Rss/Html2Rss.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Rss/Html2Rss.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Rss/Html2Rss.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Rss/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Rss/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Rss/www.asp.net.ToRss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Rss/www.asp.net.ToRss.xsl -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Txt/Html2Txt VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Txt/Html2Txt VS2008.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Txt/Html2Txt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Txt/Html2Txt.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Txt/Html2Txt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Txt/Html2Txt.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Txt/HtmlConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Txt/HtmlConvert.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Txt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Txt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Txt/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Txt/mshome.htm -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Xml/Html2Xml VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Xml/Html2Xml VS2008.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Xml/Html2Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Xml/Html2Xml.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Xml/Html2Xml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Xml/Html2Xml.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Xml/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Xml/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/Html2Xml/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/Html2Xml/mshome.htm -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/DynamicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/DynamicTests.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlAgilityPack.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlAgilityPack.Tests.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlAgilityPack.Tests.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlAgilityPack.Tests.csproj.user -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlDocumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlDocumentTests.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/files/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/files/mshome.htm -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack.Tests/mshome.htm -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/EncodingFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/EncodingFoundException.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack VS2008.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.fx.4.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.fx.4.0.csproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.snk -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAttribute.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAttributeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAttributeCollection.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlCmdLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlCmdLine.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlCommentNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlCommentNode.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlConsoleListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlConsoleListener.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlDocument.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlDocument.Xpath.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlDocument.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlElementFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlElementFlag.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlEntity.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNameTable.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.Dynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.Dynamic.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.Xpath.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeCollection.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeNavigator.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeType.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlParseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlParseError.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlParseErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlParseErrorCode.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlTextNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlTextNode.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWeb.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWeb.Xpath.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWeb.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWebException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWebException.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/IOLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/IOLibrary.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocument.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentCodeFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentCodeFragment.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragment.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragmentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragmentList.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/NameValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/NameValuePair.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/NameValuePairList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/NameValuePairList.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/Trace.FullFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/Trace.FullFramework.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/Trace.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/Utilities.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack/crc32.cs -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack2008.sln -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPack2010.sln -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPackDocumentation.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/HtmlAgilityPackDocumentation.shfbproj -------------------------------------------------------------------------------- /evernote2onenote/src/HTMLAgilityPack/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/HTMLAgilityPack/readme.txt -------------------------------------------------------------------------------- /evernote2onenote/src/MainFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/MainFrm.Designer.cs -------------------------------------------------------------------------------- /evernote2onenote/src/MainFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/MainFrm.cs -------------------------------------------------------------------------------- /evernote2onenote/src/MainFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/MainFrm.resx -------------------------------------------------------------------------------- /evernote2onenote/src/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Note.cs -------------------------------------------------------------------------------- /evernote2onenote/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Program.cs -------------------------------------------------------------------------------- /evernote2onenote/src/Properties/AssemblyInfo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Properties/AssemblyInfo.tmpl -------------------------------------------------------------------------------- /evernote2onenote/src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /evernote2onenote/src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Properties/Resources.resx -------------------------------------------------------------------------------- /evernote2onenote/src/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /evernote2onenote/src/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Properties/Settings.settings -------------------------------------------------------------------------------- /evernote2onenote/src/Properties/prebuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Properties/prebuild.ps1 -------------------------------------------------------------------------------- /evernote2onenote/src/RFC2047Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/RFC2047Decoder.cs -------------------------------------------------------------------------------- /evernote2onenote/src/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/Settings.cs -------------------------------------------------------------------------------- /evernote2onenote/src/XmlSanitizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/XmlSanitizer.cs -------------------------------------------------------------------------------- /evernote2onenote/src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/app.config -------------------------------------------------------------------------------- /evernote2onenote/src/evernote2onenote.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/evernote2onenote.ico -------------------------------------------------------------------------------- /evernote2onenote/src/evernote2onenote.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/evernote2onenote.pdn -------------------------------------------------------------------------------- /evernote2onenote/src/evernote2onenote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/evernote2onenote.png -------------------------------------------------------------------------------- /evernote2onenote/src/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/evernote2onenote/src/packages.config -------------------------------------------------------------------------------- /src/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Attachment.cs -------------------------------------------------------------------------------- /src/ConfigFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/ConfigFrm.Designer.cs -------------------------------------------------------------------------------- /src/ConfigFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/ConfigFrm.cs -------------------------------------------------------------------------------- /src/ConfigFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/ConfigFrm.resx -------------------------------------------------------------------------------- /src/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Configuration.cs -------------------------------------------------------------------------------- /src/ENScriptWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/ENScriptWrapper.cs -------------------------------------------------------------------------------- /src/Enums/NoteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Enums/NoteAction.cs -------------------------------------------------------------------------------- /src/Enums/SyncStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Enums/SyncStep.cs -------------------------------------------------------------------------------- /src/EveImSync.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/EveImSync.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/GetDocLinks/GetDocLinks VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/GetDocLinks/GetDocLinks VS2008.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/GetDocLinks/GetDocLinks VS2008.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/GetDocLinks/GetDocLinks VS2008.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/GetDocLinks/GetDocLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/GetDocLinks/GetDocLinks.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/GetDocLinks/GetDocLinks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/GetDocLinks/GetDocLinks.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/GetDocLinks/GetDocLinks.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/GetDocLinks/GetDocLinks.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/GetDocLinks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/GetDocLinks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPCompact/CompactExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPCompact/CompactExtensions.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPCompact/DebuggerDisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPCompact/DebuggerDisplayAttribute.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPCompact/HAPCompact.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPCompact/HAPCompact.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/App.xaml -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/App.xaml.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Extensions.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/HAPExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/HAPExplorer.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/HtmlAttributeViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/HtmlAttributeViewer.xaml -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/HtmlAttributeViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/HtmlAttributeViewer.xaml.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/HtmlNodeViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/HtmlNodeViewer.xaml -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/HtmlNodeViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/HtmlNodeViewer.xaml.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/NodeTreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/NodeTreeView.xaml -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/NodeTreeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/NodeTreeView.xaml.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Settings.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/UrlDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/UrlDialog.xaml -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/UrlDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/UrlDialog.xaml.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Window1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Window1.xaml -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/Window1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/Window1.xaml.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/app.config -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPExplorer/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPExplorer/mshome.htm -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPLight/HAPLight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPLight/HAPLight.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPLight/HtmlDocumentLoadCompleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPLight/HtmlDocumentLoadCompleted.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPLight/HtmlWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPLight/HtmlWeb.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPLight/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPLight/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPLight/SilverlightExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPLight/SilverlightExtensions.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPLight/Trace.Silverlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPLight/Trace.Silverlight.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HAPLight2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HAPLight2010.sln -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Rss/Html2Rss VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Rss/Html2Rss VS2008.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Rss/Html2Rss VS2008.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Rss/Html2Rss VS2008.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Rss/Html2Rss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Rss/Html2Rss.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Rss/Html2Rss.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Rss/Html2Rss.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Rss/Html2Rss.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Rss/Html2Rss.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Rss/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Rss/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Rss/www.asp.net.ToRss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Rss/www.asp.net.ToRss.xsl -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Txt/Html2Txt VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Txt/Html2Txt VS2008.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Txt/Html2Txt VS2008.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Txt/Html2Txt VS2008.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Txt/Html2Txt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Txt/Html2Txt.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Txt/Html2Txt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Txt/Html2Txt.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Txt/Html2Txt.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Txt/Html2Txt.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Txt/HtmlConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Txt/HtmlConvert.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Txt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Txt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Txt/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Txt/mshome.htm -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Xml/Html2Xml VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Xml/Html2Xml VS2008.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Xml/Html2Xml VS2008.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Xml/Html2Xml VS2008.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Xml/Html2Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Xml/Html2Xml.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Xml/Html2Xml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Xml/Html2Xml.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Xml/Html2Xml.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Xml/Html2Xml.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Xml/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Xml/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/Html2Xml/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/Html2Xml/mshome.htm -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack VS2008.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack VS2008.vssscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack.Tests/DynamicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack.Tests/DynamicTests.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlAgilityPack.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlAgilityPack.Tests.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlAgilityPack.Tests.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlAgilityPack.Tests.csproj.user -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlDocumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack.Tests/HtmlDocumentTests.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack.Tests/files/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack.Tests/files/mshome.htm -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack.Tests/mshome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack.Tests/mshome.htm -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack.vssscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/EncodingFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/EncodingFoundException.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack VS2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack VS2008.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.csproj.vspscc -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.fx.4.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.fx.4.0.csproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAgilityPack.snk -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAttribute.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlAttributeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlAttributeCollection.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlCmdLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlCmdLine.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlCommentNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlCommentNode.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlConsoleListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlConsoleListener.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlDocument.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlDocument.Xpath.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlDocument.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlElementFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlElementFlag.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlEntity.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlNameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNameTable.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.Dynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.Dynamic.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.Xpath.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNode.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeCollection.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeNavigator.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlNodeType.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlParseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlParseError.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlParseErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlParseErrorCode.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlTextNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlTextNode.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlWeb.Xpath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWeb.Xpath.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWeb.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/HtmlWebException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/HtmlWebException.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/IOLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/IOLibrary.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocument.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentCodeFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentCodeFragment.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragment.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragmentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragmentList.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentFragmentType.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/MixedCodeDocumentTextFragment.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/NameValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/NameValuePair.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/NameValuePairList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/NameValuePairList.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/Settings.StyleCop -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/Trace.FullFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/Trace.FullFramework.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/Trace.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/Utilities.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack/crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack/crc32.cs -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack2008.sln -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPack2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPack2010.sln -------------------------------------------------------------------------------- /src/HTMLAgilityPack/HtmlAgilityPackDocumentation.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/HtmlAgilityPackDocumentation.shfbproj -------------------------------------------------------------------------------- /src/HTMLAgilityPack/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/HTMLAgilityPack/readme.txt -------------------------------------------------------------------------------- /src/InterIMAP/BuildProcessTemplates/DefaultTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/BuildProcessTemplates/DefaultTemplate.xaml -------------------------------------------------------------------------------- /src/InterIMAP/BuildProcessTemplates/UpgradeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/BuildProcessTemplates/UpgradeTemplate.xaml -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/CSharpOptParse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/CSharpOptParse.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/CSharpOptParse.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/CSharpOptParse.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/ConsoleUtils/ConsoleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/ConsoleUtils/ConsoleHelper.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Attributes.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/DefaultUsageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/DefaultUsageInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Delegates.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Enumerations.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Exceptions.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/IOptionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/IOptionContainer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/IOptionResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/IOptionResults.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/IProgUsageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/IProgUsageInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/OptionDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/OptionDefinition.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/OptionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/OptionResult.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/OptionResultsDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/OptionResultsDictionary.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/ParseHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/ParseHelpers.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Parser.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/UsageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/UsageBuilder.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Xslt/Html.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Xslt/Html.xslt -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Xslt/Text.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/CSharpOptParse/OptParse/Xslt/Text.xslt -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGenerator/ConfigGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGenerator/ConfigGenerator.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGenerator/ConfigGenerator.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGenerator/ConfigGenerator.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGenerator/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/ConfigGeneratorWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/ConfigGeneratorWin.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/ConfigGeneratorWin.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/ConfigGeneratorWin.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Form1.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Form1.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Form1.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/Resources.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/ConfigGeneratorWin/Properties/Settings.settings -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Attributes/CommandInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Attributes/CommandInfoAttribute.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Attributes/RequiresConnectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Attributes/RequiresConnectionAttribute.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/BaseCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ChangeFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ChangeFolderCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ClearCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ClearCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ConnectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ConnectCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/CreateFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/CreateFolderCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/DeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/DeleteCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ExitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ExitCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/FolderListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/FolderListCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/GetNewMessagesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/GetNewMessagesCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/HelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/HelpCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/LoadConfigCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/LoadConfigCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/MessageListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/MessageListCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/MoveFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/MoveFolderCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/PasswordCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/PasswordCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/PrintConfigCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/PrintConfigCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/PrintResultCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/PrintResultCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/RenameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/RenameCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/SSLCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/SSLCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/SaveConfigCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/SaveConfigCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ServerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/ServerCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/UsernameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Commands/UsernameCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Enums/ResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Enums/ResultType.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/ArgumentParser.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/Arguments.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/ColorConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/ColorConsole.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/GetLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/GetLine.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/PasswordInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Helpers/PasswordInput.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/IMAPShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/IMAPShell.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/IMAPShell.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/IMAPShell.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Interfaces/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Interfaces/ICommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Shell/CommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Shell/CommandResult.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/Shell/IMAPShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/Shell/IMAPShell.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/IMAPShell/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/IMAPShell/app.config -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP.sln -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP.vssscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPAsyncClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPAsyncClient.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPConnection.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPConnectionPool.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPConnectionWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPConnectionWorker.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPMailboxManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPMailboxManager.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPRequestManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Client/IMAPRequestManager.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Helpers/LoggerAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Helpers/LoggerAggregator.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Helpers/WorkerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Helpers/WorkerLogger.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Objects/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Objects/Contact.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Objects/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Objects/Folder.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Objects/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Objects/Message.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Objects/MessageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Asynchronous/Objects/MessageContent.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Attributes/ConnectingTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Attributes/ConnectingTable.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Attributes/HeaderName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Attributes/HeaderName.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Attributes/LinkToTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Attributes/LinkToTable.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/BatchRequests/BaseBatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/BatchRequests/BaseBatchRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/AppendCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/AppendCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/BaseCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CapabilityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CapabilityCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/ChangeFlagCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/ChangeFlagCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CommandResult.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CopyMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CopyMessageCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CreateFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CreateFolderCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CustomCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/CustomCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/ExamineFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/ExamineFolderCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/ExpungeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/ExpungeCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/FolderListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/FolderListCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/HeartBeatCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/HeartBeatCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/LoginCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/LoginCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessageFlagCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessageFlagCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessageHeaderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessageHeaderCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessageListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessageListCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessagePartCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessagePartCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessageStructureCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/MessageStructureCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/SearchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/SearchCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/SearchCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/SearchCriteria.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/SelectFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Commands/SelectFolderCommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/DataManager.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.xsc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.xsd -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.xss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox.xss -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/Mailbox1.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/ZipStorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Data/ZipStorer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/IMAPError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/IMAPError.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/IMAPResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/IMAPResponse.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/LogType.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/MailboxType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/MailboxType.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/MessageFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/MessageFlag.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/MessageListDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Enums/MessageListDirection.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/IMAPConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/IMAPConfig.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/IMAPException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/IMAPException.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/IMAPLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/IMAPLogger.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IBaseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IBaseObject.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IBatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IBatchRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/ICommand.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IContact.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IFolder.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IMessage.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IMessageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IMessageContent.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Interfaces/IRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/AppendProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/AppendProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/BaseProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/BaseProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/ChangeFlagProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/ChangeFlagProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/CopyMessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/CopyMessageProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/CreateFolderProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/CreateFolderProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/FolderDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/FolderDataProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/FolderListProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/FolderListProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/LoginProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/LoginProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessageFlagProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessageFlagProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessageHeaderProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessageHeaderProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessageListProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessageListProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessagePartProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessagePartProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessageStructureProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/MessageStructureProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/SearchProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Processors/SearchProcessor.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/AppendRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/AppendRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/AsyncBatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/AsyncBatchRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/BaseRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/ChangeFlagRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/ChangeFlagRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/CopyMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/CopyMessageRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/CreateFolderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/CreateFolderRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/DeleteFolderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/DeleteFolderRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/DeleteMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/DeleteMessageRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/FolderDataRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/FolderDataRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/FolderTreeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/FolderTreeRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/FullMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/FullMessageRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessageFlagRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessageFlagRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessageHeaderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessageHeaderRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessageListRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessageListRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessagePartRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessagePartRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessageStructureRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MessageStructureRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MoveFolderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MoveFolderRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MoveMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/MoveMessageRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/NewMessagesRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/NewMessagesRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/RenameFolderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/RenameFolderRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/SearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/SearchRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/SimpleBatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Common/Requests/SimpleBatchRequest.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Diagram/LibraryDagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Diagram/LibraryDagram.cd -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/InterIMAP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/InterIMAP.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/InterIMAP.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/InterIMAP.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Properties/Resources.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Settings.StyleCop -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Client/IMAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Client/IMAP.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Client/IMAPBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Client/IMAPBase.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Client/IMAPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Client/IMAPClient.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPFileAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPFileAttachment.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPFolder.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPFolderCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPFolderCollection.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPFolderQuota.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPFolderQuota.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMailAddress.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMessage.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMessageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMessageCollection.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMessageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMessageContent.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMessageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPMessageFlags.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPSearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPSearchQuery.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAP/Synchronous/Objects/IMAPSearchResult.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPBodyParsePrototype/InterIMAPBodyParsePrototype.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPBodyParsePrototype/InterIMAPBodyParsePrototype.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPBodyParsePrototype/InterIMAPBodyParsePrototype.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPBodyParsePrototype/InterIMAPBodyParsePrototype.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPBodyParsePrototype/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPBodyParsePrototype/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPBodyParsePrototype/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPBodyParsePrototype/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPConsoleTest/InterIMAPConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPConsoleTest/InterIMAPConsoleTest.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPConsoleTest/InterIMAPConsoleTest.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPConsoleTest/InterIMAPConsoleTest.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPConsoleTest/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPConsoleTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPConsoleTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Form1.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Form1.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Form1.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/InterIMAPGUITest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/InterIMAPGUITest.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/InterIMAPGUITest.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/InterIMAPGUITest.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/MessageViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/MessageViewer.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/MessageViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/MessageViewer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/MessageViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/MessageViewer.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/ProgressWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/ProgressWindow.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/ProgressWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/ProgressWindow.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/ProgressWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/ProgressWindow.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/Resources.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP-Async/InterIMAPGUITest/Properties/Settings.settings -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGenerator/ConfigGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGenerator/ConfigGenerator.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGenerator/ConfigGenerator.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGenerator/ConfigGenerator.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGenerator/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/ConfigGeneratorWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/ConfigGeneratorWin.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/ConfigGeneratorWin.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/ConfigGeneratorWin.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Form1.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Form1.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Form1.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/Resources.resx -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/ConfigGeneratorWin/Properties/Settings.settings -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP.sln -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP.vssscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Client/IMAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Client/IMAP.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Client/IMAPBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Client/IMAPBase.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Client/IMAPException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Client/IMAPException.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Client/IMAPLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Client/IMAPLogger.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Diagram/InterIMAP.Diagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Diagram/InterIMAP.Diagram.cd -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/InterIMAP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/InterIMAP.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/InterIMAP.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/InterIMAP.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPFileAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPFileAttachment.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPFolder.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPFolderCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPFolderCollection.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPFolderQuota.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPFolderQuota.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMailAddress.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMessage.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMessageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMessageCollection.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMessageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMessageContent.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMessageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPMessageFlags.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPSearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPSearchQuery.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Objects/IMAPSearchResult.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Wrapper/IMAPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Wrapper/IMAPClient.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAP/Wrapper/IMAPConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAP/Wrapper/IMAPConfig.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAPConsoleTest/InterIMAPConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAPConsoleTest/InterIMAPConsoleTest.csproj -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAPConsoleTest/InterIMAPConsoleTest.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAPConsoleTest/InterIMAPConsoleTest.csproj.vspscc -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAPConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAPConsoleTest/Program.cs -------------------------------------------------------------------------------- /src/InterIMAP/InterIMAP/InterIMAPConsoleTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/InterIMAP/InterIMAPConsoleTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/InterIMAP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/InterIMAP/readme.txt -------------------------------------------------------------------------------- /src/MailMessageExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/MailMessageExt.cs -------------------------------------------------------------------------------- /src/MainFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/MainFrm.Designer.cs -------------------------------------------------------------------------------- /src/MainFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/MainFrm.cs -------------------------------------------------------------------------------- /src/MainFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/MainFrm.resx -------------------------------------------------------------------------------- /src/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Note.cs -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Program.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Properties/AssemblyInfo.tmpl -------------------------------------------------------------------------------- /src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Settings.StyleCop -------------------------------------------------------------------------------- /src/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/Settings.cs -------------------------------------------------------------------------------- /src/SimpleAES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/SimpleAES.cs -------------------------------------------------------------------------------- /src/SyncPairSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/SyncPairSettings.cs -------------------------------------------------------------------------------- /src/XmlSanitizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/XmlSanitizer.cs -------------------------------------------------------------------------------- /src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/app.config -------------------------------------------------------------------------------- /src/evimsync.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankueng/EvImSync/HEAD/src/evimsync.ico --------------------------------------------------------------------------------