mirror of
https://github.com/Ellpeck/Contentless.git
synced 2024-11-22 15:28:34 +01:00
Add field for reference syncing in config file.
This commit is contained in:
parent
0e7f7f677f
commit
09bb5c805a
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
@ -13,7 +14,9 @@ public class Config {
|
||||||
|
|
||||||
[JsonProperty("overrides")]
|
[JsonProperty("overrides")]
|
||||||
public Dictionary<string, Override> Overrides = new();
|
public Dictionary<string, Override> Overrides = new();
|
||||||
|
|
||||||
|
[JsonProperty("references")]
|
||||||
|
public string[] References = Array.Empty<string>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Override {
|
public class Override {
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
"Ex*.png"
|
"Ex*.png"
|
||||||
],
|
],
|
||||||
"logSkipped": false,
|
"logSkipped": false,
|
||||||
|
"references": ["monogame.extended.content.pipeline"],
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"Copy.*": {
|
"Copy.*": {
|
||||||
"copy": true
|
"copy": true
|
||||||
|
|
Loading…
Reference in a new issue