├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── merge-dependabot.yml │ └── on-push-do-doco.yml ├── .gitignore ├── code_of_conduct.md ├── docs ├── intro.include.md ├── zzz.include.md └── zzz.png ├── files ├── archive │ ├── empty.7z │ ├── empty.7zip │ ├── empty.bz2 │ ├── empty.bzip2 │ ├── empty.gz │ ├── empty.gzip │ ├── empty.kmz │ ├── empty.nupkg │ ├── empty.tar │ ├── empty.xz │ └── empty.zip ├── binary │ └── empty.bin ├── document │ ├── empty.docx │ ├── empty.odt │ ├── empty.pdf │ └── empty.rtf ├── image │ ├── empty.avif │ ├── empty.bmp │ ├── empty.dds │ ├── empty.dib │ ├── empty.emf │ ├── empty.exif │ ├── empty.gif │ ├── empty.heic │ ├── empty.heif │ ├── empty.ico │ ├── empty.j2c │ ├── empty.jfif │ ├── empty.jp2 │ ├── empty.jpc │ ├── empty.jpe │ ├── empty.jpeg │ ├── empty.jpg │ ├── empty.jxr │ ├── empty.pbm │ ├── empty.pcx │ ├── empty.pgm │ ├── empty.png │ ├── empty.ppm │ ├── empty.rle │ ├── empty.tga │ ├── empty.tif │ ├── empty.tiff │ ├── empty.wdp │ ├── empty.webp │ └── empty.wmp ├── sheet │ ├── empty.ods │ └── empty.xlsx └── slide │ ├── empty.odp │ └── empty.pptx ├── index ├── empty.7z ├── empty.7zip ├── empty.avif ├── empty.bin ├── empty.bmp ├── empty.bz2 ├── empty.bzip2 ├── empty.dds ├── empty.dib ├── empty.docx ├── empty.emf ├── empty.exif ├── empty.gif ├── empty.gz ├── empty.gzip ├── empty.heic ├── empty.heif ├── empty.ico ├── empty.j2c ├── empty.jfif ├── empty.jp2 ├── empty.jpc ├── empty.jpe ├── empty.jpeg ├── empty.jpg ├── empty.jxr ├── empty.kmz ├── empty.nupkg ├── empty.odp ├── empty.ods ├── empty.odt ├── empty.pbm ├── empty.pcx ├── empty.pdf ├── empty.pgm ├── empty.png ├── empty.ppm ├── empty.pptx ├── empty.rle ├── empty.rtf ├── empty.tar ├── empty.tga ├── empty.tif ├── empty.tiff ├── empty.wdp ├── empty.webp ├── empty.wmp ├── empty.xlsx ├── empty.xz └── empty.zip ├── license.txt ├── readme.md └── src ├── .editorconfig ├── Directory.Build.props ├── Directory.Packages.props ├── EmptyFiles.Tool ├── AssemblyInfo.cs ├── EmptyFiles.Tool.csproj └── Program.cs ├── EmptyFiles.slnx ├── EmptyFiles.slnx.DotSettings ├── EmptyFiles.targets ├── EmptyFiles ├── AllFiles.cs ├── AssemblyLocation.cs ├── Category.cs ├── ClsCompliant.cs ├── ContentTypes.cs ├── EmptyFile.cs ├── EmptyFileTargets.md ├── EmptyFiles.csproj ├── FileExtensions.cs ├── GlobalUsings.cs ├── Guard.cs └── IsTextFile.cs ├── Shared.sln.DotSettings ├── Tests ├── ContentTypesTests.cs ├── ExtensionsTests.cs ├── GlobalUsings.cs ├── ImmutableVersionTests.cs ├── IndexWriter.cs ├── Size.cs ├── SolutionDirectoryFinder.cs ├── Tests.cs └── Tests.csproj ├── appveyor.yml ├── extensions.include.md ├── global.json ├── icon.png ├── key.snk ├── mdsnippets.json ├── nuget.config └── nuget.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: VerifyTests 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/.github/workflows/merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push-do-doco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/.github/workflows/on-push-do-doco.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/.gitignore -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /docs/intro.include.md: -------------------------------------------------------------------------------- 1 | A collection of minimal binary files. -------------------------------------------------------------------------------- /docs/zzz.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/docs/zzz.include.md -------------------------------------------------------------------------------- /docs/zzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/docs/zzz.png -------------------------------------------------------------------------------- /files/archive/empty.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.7z -------------------------------------------------------------------------------- /files/archive/empty.7zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.7zip -------------------------------------------------------------------------------- /files/archive/empty.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.bz2 -------------------------------------------------------------------------------- /files/archive/empty.bzip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.bzip2 -------------------------------------------------------------------------------- /files/archive/empty.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.gz -------------------------------------------------------------------------------- /files/archive/empty.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.gzip -------------------------------------------------------------------------------- /files/archive/empty.kmz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.kmz -------------------------------------------------------------------------------- /files/archive/empty.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.nupkg -------------------------------------------------------------------------------- /files/archive/empty.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.tar -------------------------------------------------------------------------------- /files/archive/empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.xz -------------------------------------------------------------------------------- /files/archive/empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/archive/empty.zip -------------------------------------------------------------------------------- /files/binary/empty.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/document/empty.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/document/empty.docx -------------------------------------------------------------------------------- /files/document/empty.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/document/empty.odt -------------------------------------------------------------------------------- /files/document/empty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/document/empty.pdf -------------------------------------------------------------------------------- /files/document/empty.rtf: -------------------------------------------------------------------------------- 1 | {\rtf} -------------------------------------------------------------------------------- /files/image/empty.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.avif -------------------------------------------------------------------------------- /files/image/empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.bmp -------------------------------------------------------------------------------- /files/image/empty.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.dds -------------------------------------------------------------------------------- /files/image/empty.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.dib -------------------------------------------------------------------------------- /files/image/empty.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.emf -------------------------------------------------------------------------------- /files/image/empty.exif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.exif -------------------------------------------------------------------------------- /files/image/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.gif -------------------------------------------------------------------------------- /files/image/empty.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.heic -------------------------------------------------------------------------------- /files/image/empty.heif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.heif -------------------------------------------------------------------------------- /files/image/empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.ico -------------------------------------------------------------------------------- /files/image/empty.j2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.j2c -------------------------------------------------------------------------------- /files/image/empty.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.jfif -------------------------------------------------------------------------------- /files/image/empty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.jp2 -------------------------------------------------------------------------------- /files/image/empty.jpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.jpc -------------------------------------------------------------------------------- /files/image/empty.jpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.jpe -------------------------------------------------------------------------------- /files/image/empty.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.jpeg -------------------------------------------------------------------------------- /files/image/empty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.jpg -------------------------------------------------------------------------------- /files/image/empty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.jxr -------------------------------------------------------------------------------- /files/image/empty.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.pbm -------------------------------------------------------------------------------- /files/image/empty.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.pcx -------------------------------------------------------------------------------- /files/image/empty.pgm: -------------------------------------------------------------------------------- 1 | P5 2 | 1 1 3 | 255 4 | -------------------------------------------------------------------------------- /files/image/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.png -------------------------------------------------------------------------------- /files/image/empty.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 1 1 3 | 255 4 | -------------------------------------------------------------------------------- /files/image/empty.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.rle -------------------------------------------------------------------------------- /files/image/empty.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.tga -------------------------------------------------------------------------------- /files/image/empty.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.tif -------------------------------------------------------------------------------- /files/image/empty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.tiff -------------------------------------------------------------------------------- /files/image/empty.wdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.wdp -------------------------------------------------------------------------------- /files/image/empty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.webp -------------------------------------------------------------------------------- /files/image/empty.wmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/image/empty.wmp -------------------------------------------------------------------------------- /files/sheet/empty.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/sheet/empty.ods -------------------------------------------------------------------------------- /files/sheet/empty.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/sheet/empty.xlsx -------------------------------------------------------------------------------- /files/slide/empty.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/slide/empty.odp -------------------------------------------------------------------------------- /files/slide/empty.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/files/slide/empty.pptx -------------------------------------------------------------------------------- /index/empty.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.7z -------------------------------------------------------------------------------- /index/empty.7zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.7zip -------------------------------------------------------------------------------- /index/empty.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.avif -------------------------------------------------------------------------------- /index/empty.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index/empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.bmp -------------------------------------------------------------------------------- /index/empty.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.bz2 -------------------------------------------------------------------------------- /index/empty.bzip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.bzip2 -------------------------------------------------------------------------------- /index/empty.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.dds -------------------------------------------------------------------------------- /index/empty.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.dib -------------------------------------------------------------------------------- /index/empty.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.docx -------------------------------------------------------------------------------- /index/empty.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.emf -------------------------------------------------------------------------------- /index/empty.exif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.exif -------------------------------------------------------------------------------- /index/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.gif -------------------------------------------------------------------------------- /index/empty.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.gz -------------------------------------------------------------------------------- /index/empty.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.gzip -------------------------------------------------------------------------------- /index/empty.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.heic -------------------------------------------------------------------------------- /index/empty.heif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.heif -------------------------------------------------------------------------------- /index/empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.ico -------------------------------------------------------------------------------- /index/empty.j2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.j2c -------------------------------------------------------------------------------- /index/empty.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.jfif -------------------------------------------------------------------------------- /index/empty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.jp2 -------------------------------------------------------------------------------- /index/empty.jpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.jpc -------------------------------------------------------------------------------- /index/empty.jpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.jpe -------------------------------------------------------------------------------- /index/empty.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.jpeg -------------------------------------------------------------------------------- /index/empty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.jpg -------------------------------------------------------------------------------- /index/empty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.jxr -------------------------------------------------------------------------------- /index/empty.kmz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.kmz -------------------------------------------------------------------------------- /index/empty.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.nupkg -------------------------------------------------------------------------------- /index/empty.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.odp -------------------------------------------------------------------------------- /index/empty.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.ods -------------------------------------------------------------------------------- /index/empty.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.odt -------------------------------------------------------------------------------- /index/empty.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.pbm -------------------------------------------------------------------------------- /index/empty.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.pcx -------------------------------------------------------------------------------- /index/empty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.pdf -------------------------------------------------------------------------------- /index/empty.pgm: -------------------------------------------------------------------------------- 1 | P5 2 | 1 1 3 | 255 4 | -------------------------------------------------------------------------------- /index/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.png -------------------------------------------------------------------------------- /index/empty.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 1 1 3 | 255 4 | -------------------------------------------------------------------------------- /index/empty.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.pptx -------------------------------------------------------------------------------- /index/empty.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.rle -------------------------------------------------------------------------------- /index/empty.rtf: -------------------------------------------------------------------------------- 1 | {\rtf} -------------------------------------------------------------------------------- /index/empty.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.tar -------------------------------------------------------------------------------- /index/empty.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.tga -------------------------------------------------------------------------------- /index/empty.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.tif -------------------------------------------------------------------------------- /index/empty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.tiff -------------------------------------------------------------------------------- /index/empty.wdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.wdp -------------------------------------------------------------------------------- /index/empty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.webp -------------------------------------------------------------------------------- /index/empty.wmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.wmp -------------------------------------------------------------------------------- /index/empty.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.xlsx -------------------------------------------------------------------------------- /index/empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.xz -------------------------------------------------------------------------------- /index/empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/index/empty.zip -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/readme.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/EmptyFiles.Tool/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles.Tool/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EmptyFiles.Tool/EmptyFiles.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles.Tool/EmptyFiles.Tool.csproj -------------------------------------------------------------------------------- /src/EmptyFiles.Tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles.Tool/Program.cs -------------------------------------------------------------------------------- /src/EmptyFiles.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles.slnx -------------------------------------------------------------------------------- /src/EmptyFiles.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles.slnx.DotSettings -------------------------------------------------------------------------------- /src/EmptyFiles.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles.targets -------------------------------------------------------------------------------- /src/EmptyFiles/AllFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/AllFiles.cs -------------------------------------------------------------------------------- /src/EmptyFiles/AssemblyLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/AssemblyLocation.cs -------------------------------------------------------------------------------- /src/EmptyFiles/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/Category.cs -------------------------------------------------------------------------------- /src/EmptyFiles/ClsCompliant.cs: -------------------------------------------------------------------------------- 1 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /src/EmptyFiles/ContentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/ContentTypes.cs -------------------------------------------------------------------------------- /src/EmptyFiles/EmptyFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/EmptyFile.cs -------------------------------------------------------------------------------- /src/EmptyFiles/EmptyFileTargets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/EmptyFileTargets.md -------------------------------------------------------------------------------- /src/EmptyFiles/EmptyFiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/EmptyFiles.csproj -------------------------------------------------------------------------------- /src/EmptyFiles/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/FileExtensions.cs -------------------------------------------------------------------------------- /src/EmptyFiles/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/GlobalUsings.cs -------------------------------------------------------------------------------- /src/EmptyFiles/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/EmptyFiles/Guard.cs -------------------------------------------------------------------------------- /src/EmptyFiles/IsTextFile.cs: -------------------------------------------------------------------------------- 1 | namespace EmptyFiles; 2 | 3 | public delegate bool IsTextFile(CharSpan path); -------------------------------------------------------------------------------- /src/Shared.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Shared.sln.DotSettings -------------------------------------------------------------------------------- /src/Tests/ContentTypesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/ContentTypesTests.cs -------------------------------------------------------------------------------- /src/Tests/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/ExtensionsTests.cs -------------------------------------------------------------------------------- /src/Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Tests/ImmutableVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/ImmutableVersionTests.cs -------------------------------------------------------------------------------- /src/Tests/IndexWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/IndexWriter.cs -------------------------------------------------------------------------------- /src/Tests/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/Size.cs -------------------------------------------------------------------------------- /src/Tests/SolutionDirectoryFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/SolutionDirectoryFinder.cs -------------------------------------------------------------------------------- /src/Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/Tests.cs -------------------------------------------------------------------------------- /src/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/appveyor.yml -------------------------------------------------------------------------------- /src/extensions.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/extensions.include.md -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/mdsnippets.json -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/nuget.config -------------------------------------------------------------------------------- /src/nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/EmptyFiles/HEAD/src/nuget.md --------------------------------------------------------------------------------