1 write to _loader
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildWorkspace.cs (1)
45_loader = new MSBuildProjectLoader(Services.SolutionServices, _reporter, _loggerFactory, _projectFileExtensionRegistry, properties);
8 references to _loader
Microsoft.CodeAnalysis.Workspaces.MSBuild (8)
MSBuild\MSBuildWorkspace.cs (8)
102public ImmutableDictionary<string, string> Properties => _loader.Properties; 122get { return _loader.LoadMetadataForReferencedProjects; } 123set { _loader.LoadMetadataForReferencedProjects = value; } 139get => _loader.SkipUnrecognizedProjects; 140set => _loader.SkipUnrecognizedProjects = value; 148_loader.AssociateFileExtensionWithLanguage(projectFileExtension, language); 206var solutionInfo = await _loader.LoadSolutionInfoAsync(solutionFilePath, progress, msbuildLogger, cancellationToken).ConfigureAwait(false); 253var projects = await _loader.LoadProjectInfoAsync(projectFilePath, projectMap, progress, msbuildLogger, cancellationToken).ConfigureAwait(false);