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 {
[JsonProperty("exclude")]
public string[] ExcludedFiles = {"bin/", "obj/"};
public string[] ExcludedFiles = {"bin/*", "obj/*"};
[JsonProperty("logSkipped")]
public bool LogSkipped = true;

View file

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

View file

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