├── .gitattributes ├── .gitignore ├── AutoEmbed.sln ├── AutoEmbed ├── AutoEmbed.csproj ├── AutoEmbed.targets ├── EmbedItem.cs ├── EmbeddingGenerator.cs └── Properties │ └── launchSettings.json ├── LICENSE ├── README.md └── Tester ├── Program.cs ├── Tester.csproj └── files ├── fileA.txt └── subdir └── subSubDir ├── fileB.txt └── fileC.bin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoEmbed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/AutoEmbed.sln -------------------------------------------------------------------------------- /AutoEmbed/AutoEmbed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/AutoEmbed/AutoEmbed.csproj -------------------------------------------------------------------------------- /AutoEmbed/AutoEmbed.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/AutoEmbed/AutoEmbed.targets -------------------------------------------------------------------------------- /AutoEmbed/EmbedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/AutoEmbed/EmbedItem.cs -------------------------------------------------------------------------------- /AutoEmbed/EmbeddingGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/AutoEmbed/EmbeddingGenerator.cs -------------------------------------------------------------------------------- /AutoEmbed/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/AutoEmbed/Properties/launchSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/README.md -------------------------------------------------------------------------------- /Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/Tester/Program.cs -------------------------------------------------------------------------------- /Tester/Tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsienki/AutoEmbed/HEAD/Tester/Tester.csproj -------------------------------------------------------------------------------- /Tester/files/fileA.txt: -------------------------------------------------------------------------------- 1 | contentA -------------------------------------------------------------------------------- /Tester/files/subdir/subSubDir/fileB.txt: -------------------------------------------------------------------------------- 1 | contentA -------------------------------------------------------------------------------- /Tester/files/subdir/subSubDir/fileC.bin: -------------------------------------------------------------------------------- 1 | * 2 | helloWorld --------------------------------------------------------------------------------