├── .gitattributes ├── Images ├── err.png ├── ok.png └── skip.png ├── LICENSE ├── README.md ├── TorrentFileChecker.sln └── TorrentFileChecker ├── Program.cs ├── TorrentFileChecker.csproj ├── TorrentFileChecker.csproj.user ├── formMain.Designer.cs ├── formMain.cs └── formMain.resx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/.gitattributes -------------------------------------------------------------------------------- /Images/err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/Images/err.png -------------------------------------------------------------------------------- /Images/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/Images/ok.png -------------------------------------------------------------------------------- /Images/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/Images/skip.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/README.md -------------------------------------------------------------------------------- /TorrentFileChecker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/TorrentFileChecker.sln -------------------------------------------------------------------------------- /TorrentFileChecker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/TorrentFileChecker/Program.cs -------------------------------------------------------------------------------- /TorrentFileChecker/TorrentFileChecker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/TorrentFileChecker/TorrentFileChecker.csproj -------------------------------------------------------------------------------- /TorrentFileChecker/TorrentFileChecker.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/TorrentFileChecker/TorrentFileChecker.csproj.user -------------------------------------------------------------------------------- /TorrentFileChecker/formMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/TorrentFileChecker/formMain.Designer.cs -------------------------------------------------------------------------------- /TorrentFileChecker/formMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/TorrentFileChecker/formMain.cs -------------------------------------------------------------------------------- /TorrentFileChecker/formMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hironpan/TorrentFileChecker/HEAD/TorrentFileChecker/formMain.resx --------------------------------------------------------------------------------