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 {
|
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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"obj/",
|
"obj/*",
|
||||||
"bin/",
|
"bin/*",
|
||||||
"Ex*.png",
|
"Ex*.png",
|
||||||
"Tiled/*.png"
|
"Tiled/*.png"
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue