Add field for reference syncing in config file.

This commit is contained in:
Gandifil 2023-12-20 19:47:23 +03:00
parent 0e7f7f677f
commit 09bb5c805a
2 changed files with 5 additions and 1 deletions

View file

@ -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 {

View file

@ -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