├── .gitattributes ├── .gitignore ├── ConsoleHelper.cs ├── ExifToolWrapper.cs ├── ExifToolWrapper.csproj ├── ExifToolWrapper.sln ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── exiftool.exe └── license.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /ConsoleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/ConsoleHelper.cs -------------------------------------------------------------------------------- /ExifToolWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/ExifToolWrapper.cs -------------------------------------------------------------------------------- /ExifToolWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/ExifToolWrapper.csproj -------------------------------------------------------------------------------- /ExifToolWrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/ExifToolWrapper.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/README.md -------------------------------------------------------------------------------- /exiftool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/exiftool.exe -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FileMeta/ExifToolWrapper/HEAD/license.md --------------------------------------------------------------------------------