3 writes to Success
Microsoft.Build (3)
BackEnd\Components\SdkResolution\SdkResult.cs (3)
27Success = false; 36Success = true; 52Success = true;
17 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)
46/// <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)
91MSBuildEventSource.Log.OutOfProcSdkResolverServiceRequestSdkPathFromMainNodeStop(submissionId, sdk.Name, solutionPath, projectPath, _lastResponse.Success, wasResultCached);
BackEnd\Components\SdkResolution\SdkResolverService.cs (2)
347MSBuildEventSource.Log.SdkResolverResolveSdkStop(sdkResolver.Name, sdk.Name, solutionPath ?? string.Empty, projectPath ?? string.Empty, result?.Path ?? string.Empty, result?.Success ?? false); 354if (result.Success)
Evaluation\Evaluator.cs (1)
1801if (!sdkResult.Success)
Microsoft.Build.Engine.OM.UnitTests (2)
ObjectModelRemoting\Helpers\ViewValidation.evaluation.cs (2)
280Assert.Equal(real.Success, view.Success);
Microsoft.Build.Engine.UnitTests (7)
BackEnd\SdkResolverService_Tests.cs (5)
59result.Success.ShouldBeFalse(); 395result.Success.ShouldBeTrue(); 431result.Success.ShouldBeTrue(); 477result.Success.ShouldBeTrue(); 522result.Success.ShouldBeTrue();
Evaluation\ProjectSdkImplicitImport_Tests.cs (1)
696import.SdkResult.Success.ShouldBeTrue();
InternalEngineHelpers.cs (1)
81if (!sdkResult.Success)
Microsoft.Build.Framework (2)
Sdk\SdkResult.cs (2)
39/// Null if <see cref="Success"/> == false 47/// Null if <see cref="Success"/> == false