We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 876c9be commit 75aceadCopy full SHA for 75acead
1 file changed
src/Configuration/OxideConfig.cs
@@ -55,6 +55,12 @@ public class CompilerOptions
55
/// </summary>
56
[JsonProperty(PropertyName = "Enable Publicizer")]
57
public bool? Publicize { get; set; } = true;
58
+
59
+ /// <summary>
60
+ /// List of references to ignore when publicizing
61
+ /// </summary>
62
+ [JsonProperty(PropertyName = "Ignored Publicizer References")]
63
+ public List<string> IgnoredPublicizerReferences { get; set; } = new List<string>();
64
}
65
66
[JsonObject]
@@ -245,6 +251,12 @@ private bool InitializeDefaultValues()
245
251
changed = true;
246
252
247
253
254
+ if (Compiler.IgnoredPublicizerReferences == null)
255
+ {
256
+ Compiler.IgnoredPublicizerReferences = new List<string>();
257
+ changed = true;
258
+ }
259
248
260
return changed;
249
261
250
262
0 commit comments