Skip to content

Commit eeb3ebf

Browse files
committed
Add publicizer option to configuration
- Introduced a new boolean property for enabling the publicizer. - Default value is set to true.
1 parent d5394ae commit eeb3ebf

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/Configuration/OxideConfig.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ public class CompilerOptions
4949
/// </summary>
5050
[JsonProperty(PropertyName = "Preprocessor directives")]
5151
public List<string> PreprocessorDirectives { get; set; } = new List<string>();
52+
53+
/// <summary>
54+
/// Enables the publicizer
55+
/// </summary>
56+
[JsonProperty(PropertyName = "Enable Publicizer")]
57+
public bool Publicize { get; set; } = true;
5258
}
5359

5460
[JsonObject]

0 commit comments

Comments
 (0)