File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ public class CompilerOptions
5555 /// </summary>
5656 [ JsonProperty ( PropertyName = "Enable Publicizer" ) ]
5757 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 > ( ) ;
5864 }
5965
6066 [ JsonObject ]
@@ -245,6 +251,12 @@ private bool InitializeDefaultValues()
245251 changed = true ;
246252 }
247253
254+ if ( Compiler . IgnoredPublicizerReferences == null )
255+ {
256+ Compiler . IgnoredPublicizerReferences = new List < string > ( ) ;
257+ changed = true ;
258+ }
259+
248260 return changed ;
249261 }
250262 }
You can’t perform that action at this time.
0 commit comments