├── .gitattributes ├── .github ├── FUNDING.yml └── dependabot.yml ├── .gitignore ├── App.config ├── FileHistoryCleaner.csproj ├── FileHistoryCleaner.sln ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── RemoveHistoryCommand.cs └── Sample.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/App.config -------------------------------------------------------------------------------- /FileHistoryCleaner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/FileHistoryCleaner.csproj -------------------------------------------------------------------------------- /FileHistoryCleaner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/FileHistoryCleaner.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/README.md -------------------------------------------------------------------------------- /RemoveHistoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/RemoveHistoryCommand.cs -------------------------------------------------------------------------------- /Sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessehouwing/WindowsFileHistoryCleaner/HEAD/Sample.txt --------------------------------------------------------------------------------