├── .gitignore ├── OutlookRulesExport.sln ├── OutlookRulesExport ├── App.config ├── OutlookRulesExport.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcleary/outlook-gmail-rules-export/HEAD/.gitignore -------------------------------------------------------------------------------- /OutlookRulesExport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcleary/outlook-gmail-rules-export/HEAD/OutlookRulesExport.sln -------------------------------------------------------------------------------- /OutlookRulesExport/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcleary/outlook-gmail-rules-export/HEAD/OutlookRulesExport/App.config -------------------------------------------------------------------------------- /OutlookRulesExport/OutlookRulesExport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcleary/outlook-gmail-rules-export/HEAD/OutlookRulesExport/OutlookRulesExport.csproj -------------------------------------------------------------------------------- /OutlookRulesExport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcleary/outlook-gmail-rules-export/HEAD/OutlookRulesExport/Program.cs -------------------------------------------------------------------------------- /OutlookRulesExport/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcleary/outlook-gmail-rules-export/HEAD/OutlookRulesExport/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcleary/outlook-gmail-rules-export/HEAD/README.md --------------------------------------------------------------------------------