1 write to Errors
Microsoft.Build (1)
BackEnd\Components\SdkResolution\SdkResult.cs (1)
29Errors = errors;
4 references to Errors
Microsoft.Build (4)
BackEnd\Components\SdkResolution\SdkResolverService.cs (4)
337if (result?.Warnings?.Any(s => s is null) == true || result?.Errors?.Any(s => s is null) == true) 386string resultErrors = result.Errors?.Any() == true ? string.Join(Environment.NewLine, result.Errors) : "null"; 395errors = results.SelectMany(r => r.Errors ?? []);