diff --git a/README.md b/README.md
index 701cc68..95dd105 100644
--- a/README.md
+++ b/README.md
@@ -16,10 +16,13 @@ Contentless will now automatically add any content files from your `Content` dir
To add a configuration file to Contentless, simply create a file named `Contentless.json` in the same directory as your `Content.mgcb` file. You can use the config to change several options. For reference, here is a configuration file with the default values that are used if no config is supplied:
```json
{
+ // The list of files that should be excluded. Can use regex
"exclude": [
"obj/",
"bin/"
],
+ // If any files that were skipped without errors should be logged
+ // (Files that already have entries or files that were ignored)
"logSkipped": true
}
```
diff --git a/Test/Content/Content.mgcb b/Test/Content/Content.mgcb
index 05e810d..8607763 100644
--- a/Test/Content/Content.mgcb
+++ b/Test/Content/Content.mgcb
@@ -64,3 +64,8 @@
/importer:TiledMapTilesetImporter
/processor:TiledMapTilesetProcessor
/build:Tiled/Tileset.tsx
+#begin Copy/Test.json
+/importer:TexturePackerJsonImporter
+/processor:TexturePackerProcessor
+/build:Copy/Test.json
+
diff --git a/Test/Content/Copy/Test.json b/Test/Content/Copy/Test.json
new file mode 100644
index 0000000..544b7b4
--- /dev/null
+++ b/Test/Content/Copy/Test.json
@@ -0,0 +1,3 @@
+{
+
+}
\ No newline at end of file
diff --git a/Test/Test.csproj b/Test/Test.csproj
index fd7b2c0..cebcd8d 100644
--- a/Test/Test.csproj
+++ b/Test/Test.csproj
@@ -8,9 +8,4 @@
-
-
-
-
-