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 Newtonsoft.Json;
|
||||
|
||||
|
@ -14,6 +15,8 @@ public class Config {
|
|||
[JsonProperty("overrides")]
|
||||
public Dictionary<string, Override> Overrides = new();
|
||||
|
||||
[JsonProperty("references")]
|
||||
public string[] References = Array.Empty<string>();
|
||||
}
|
||||
|
||||
public class Override {
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
"Ex*.png"
|
||||
],
|
||||
"logSkipped": false,
|
||||
"references": ["monogame.extended.content.pipeline"],
|
||||
"overrides": {
|
||||
"Copy.*": {
|
||||
"copy": true
|
||||
|
|
Loading…
Reference in a new issue