├── .gitignore └── Readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | #OS junk files 2 | [Tt]humbs.db 3 | *.DS_Store 4 | 5 | #Visual Studio files 6 | *.[Oo]bj 7 | *.exe 8 | *.pdb 9 | *.user 10 | *.aps 11 | *.pch 12 | *.vspscc 13 | *.vssscc 14 | *_i.c 15 | *_p.c 16 | *.ncb 17 | *.suo 18 | *.tlb 19 | *.tlh 20 | *.bak 21 | *.[Cc]ache 22 | *.ilk 23 | *.log 24 | *.lib 25 | *.sbr 26 | *.sdf 27 | *.dll 28 | *.sh 29 | *.VisualState.xml 30 | ipch/ 31 | obj/ 32 | [Bb]in 33 | [Dd]ebug*/ 34 | [Rr]elease/ 35 | [Dd]ocument/ 36 | [Cc]ustomize/ 37 | [Aa]rchive/ 38 | [Rr]esults/ 39 | [Tt]mp/ 40 | [Tt]emp/ 41 | CubePdfEngineTests/Ghostscript/ 42 | Ankh.NoLoad 43 | 44 | #Tooling 45 | _ReSharper*/ 46 | *.resharper 47 | [Tt]est[Rr]esult* 48 | 49 | #Project files 50 | [Bb]uild/ 51 | 52 | #Subversion files 53 | .svn 54 | 55 | # Office Temp Files 56 | ~$* 57 | 58 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | CubePDF 2 | ==== 3 | 4 | Copyright (c) 2010 CubeSoft Inc. 5 | 6 | support@cube-soft.jp 7 | https://www.cube-soft.jp/cubepdf/ 8 | 9 | ## Attension 10 | 11 | CubePDF projects have been moved to: 12 | 13 | * https://github.com/cube-soft/Cube.Pdf 14 | * https://github.com/cube-soft/Cube.Pdf/tree/master/Applications/Converter 15 | 16 | The repository will be removed in the future. --------------------------------------------------------------------------------