2 writes to Path
Microsoft.Build (2)
BackEnd\Components\SdkResolution\SdkResult.cs (2)
38Path = path; 60Path = firstPath;
7 references to Path
Microsoft.Build (5)
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); 367loggingContext.LogComment(MessageImportance.Low, "SucceededToResolveSDK", sdk.ToString(), sdkResolver.Name, result.Path ?? "null", result.Version ?? "null");
Evaluation\Evaluator.cs (3)
1852if (sdkResult.Path != null) 1854ExpandAndLoadImportsFromUnescapedImportExpression(directoryOfImportingFile, importElement, Path.Combine(sdkResult.Path, project), 1904string dotnetExe = Path.Combine(FileUtilities.GetFolderAbove(sdkResult.Path, 5), Constants.DotnetProcessName);
Microsoft.Build.Framework (1)
Sdk\SdkResult.cs (1)
53/// Additional resolved SDK paths beyond the one specified in <see cref="Path"/>
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));