fixed directories not being excluded correctly by default

This commit is contained in:
Ell 2024-08-31 13:40:39 +02:00
parent f64f554f35
commit c2755ef290
3 changed files with 8 additions and 3 deletions

View file

@ -7,7 +7,7 @@ namespace Contentless;
public class Config { public class Config {
[JsonProperty("exclude")] [JsonProperty("exclude")]
public string[] ExcludedFiles = {"bin/", "obj/"}; public string[] ExcludedFiles = {"bin/*", "obj/*"};
[JsonProperty("logSkipped")] [JsonProperty("logSkipped")]
public bool LogSkipped = true; public bool LogSkipped = true;

View file

@ -46,3 +46,8 @@
/importer:TiledMapTilesetImporter /importer:TiledMapTilesetImporter
/processor:TiledMapTilesetProcessor /processor:TiledMapTilesetProcessor
/build:Tiled/Tileset.tsx /build:Tiled/Tileset.tsx
#begin Textures/Exclude.png
/importer:TextureImporter
/processor:TextureProcessor
/build:Textures/Exclude.png

View file

@ -1,7 +1,7 @@
{ {
"exclude": [ "exclude": [
"obj/", "obj/*",
"bin/", "bin/*",
"Ex*.png", "Ex*.png",
"Tiled/*.png" "Tiled/*.png"
], ],