3 writes to Warnings
Microsoft.Build (3)
BackEnd\Components\SdkResolution\SdkResult.cs (3)
30Warnings = warnings; 40Warnings = warnings; 75Warnings = warnings;
5 references to Warnings
Microsoft.Build (5)
BackEnd\Components\SdkResolution\SdkResolverService.cs (5)
336if (result?.Warnings?.Any(s => s is null) == true || result?.Errors?.Any(s => s is null) == true) 368LogWarnings(loggingContext, sdkReferenceLocation, result.Warnings); 384string resultWarnings = result.Warnings?.Any() == true ? string.Join(Environment.NewLine, result.Warnings) : "null"; 393warnings = results.SelectMany(r => r.Warnings ?? []);