4 instantiations of WarningPropertiesCollection
NuGet.Commands (4)
RestoreCommand\Logging\RestoreCollectorLogger.cs (1)
70ProjectWarningPropertiesCollection = new WarningPropertiesCollection(
RestoreCommand\Logging\TransitiveNoWarnUtils.cs (3)
33var parentWarningProperties = new WarningPropertiesCollection( 69return new WarningPropertiesCollection( 252collection = new WarningPropertiesCollection(
17 references to WarningPropertiesCollection
NuGet.Commands (17)
PackCollectorLogger.cs (2)
86if (WarningPropertiesCollection.ApplyProjectWideNoWarnProperties(message, warningProperties: WarningProperties)) 114WarningPropertiesCollection.ApplyProjectWideWarningsAsErrorProperties(message, WarningProperties);
RestoreCommand\Logging\RestoreCollectorLogger.cs (3)
26private WarningPropertiesCollection _transitiveWarningPropertiesCollection; 34internal WarningPropertiesCollection ProjectWarningPropertiesCollection { get; set; } 36internal WarningPropertiesCollection TransitiveWarningPropertiesCollection
RestoreCommand\Logging\TransitiveNoWarnUtils.cs (9)
27public static WarningPropertiesCollection CreateTransitiveWarningPropertiesCollection( 33var parentWarningProperties = new WarningPropertiesCollection( 41var warningPropertiesCache = new Dictionary<string, Dictionary<string, WarningPropertiesCollection>>( 89Dictionary<string, Dictionary<string, WarningPropertiesCollection>> warningPropertiesCache) 107WarningPropertiesCollection nodeWarningProperties = null; 235private static WarningPropertiesCollection GetNodeWarningProperties( 238Dictionary<string, Dictionary<string, WarningPropertiesCollection>> warningPropertiesCache) 245= new Dictionary<string, WarningPropertiesCollection>(StringComparer.OrdinalIgnoreCase); 250if (!frameworkCollection.TryGetValue(framework, out var collection))
RestoreCommand\Logging\WarningPropertiesCollection.cs (3)
21internal class WarningPropertiesCollection : IEquatable<WarningPropertiesCollection> 197return Equals(obj as WarningPropertiesCollection); 200public bool Equals(WarningPropertiesCollection other)