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
55
55
/// </summary>
56
56
[ JsonProperty ( PropertyName = "Enable Publicizer" ) ]
57
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 > ( ) ;
58
64
}
59
65
60
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
}
You can’t perform that action at this time.
0 commit comments