3 writes to Success
Microsoft.Build (3)
BackEnd\Components\SdkResolution\SdkResult.cs (3)
27Success = false; 36Success = true; 53Success = true;
9 references to Success
Microsoft.Build (6)
BackEnd\Components\SdkResolution\CachingSdkResolverService.cs (1)
82MSBuildEventSource.Log.CachedSdkResolverServiceResolveSdkStop(sdk.Name, solutionPath ?? string.Empty, projectPath ?? string.Empty, result.Success, wasResultCached);
BackEnd\Components\SdkResolution\ISdkResolverService.cs (1)
51/// <returns>An <see cref="SdkResult"/> containing information about the resolved SDK. If no resolver was able to resolve it, then <see cref="Framework.SdkResult.Success"/> == false. </returns>
BackEnd\Components\SdkResolution\OutOfProcNodeSdkResolverService.cs (1)
96MSBuildEventSource.Log.OutOfProcSdkResolverServiceRequestSdkPathFromMainNodeStop(submissionId, sdk.Name, solutionPath, projectPath, _lastResponse.Success, wasResultCached);
BackEnd\Components\SdkResolution\SdkResolverService.cs (2)
358MSBuildEventSource.Log.SdkResolverResolveSdkStop(sdkResolver.Name, sdk.Name, solutionPath ?? string.Empty, projectPath ?? string.Empty, result?.Path ?? string.Empty, result?.Success ?? false); 365if (result.Success)
Evaluation\Evaluator.cs (1)
1827if (!sdkResult.Success)
Microsoft.Build.Framework (2)
Sdk\SdkResult.cs (2)
40/// Null if <see cref="Success"/> == false 48/// Null if <see cref="Success"/> == false
Microsoft.Build.NuGetSdkResolver (1)
NuGetSdkResolver.cs (1)
268if (SdkResolverEventSource.Instance.IsEnabled()) SdkResolverEventSource.Instance.GetResultStop(sdk.Name, parsedSdkVersion.OriginalVersion, result?.Path, result == null ? 0 : (result.Success ? 1 : 0));