mirror of
https://github.com/Ellpeck/Contentless.git
synced 2024-11-22 07:23:30 +01:00
fixed directories not being excluded correctly by default
This commit is contained in:
parent
f64f554f35
commit
c2755ef290
3 changed files with 8 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -46,3 +46,8 @@
|
|||
/importer:TiledMapTilesetImporter
|
||||
/processor:TiledMapTilesetProcessor
|
||||
/build:Tiled/Tileset.tsx
|
||||
#begin Textures/Exclude.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/build:Textures/Exclude.png
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"exclude": [
|
||||
"obj/",
|
||||
"bin/",
|
||||
"obj/*",
|
||||
"bin/*",
|
||||
"Ex*.png",
|
||||
"Tiled/*.png"
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue