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)
100public ImmutableDictionary<string, string> Properties => _loader.Properties; 120get { return _loader.LoadMetadataForReferencedProjects; } 121set { _loader.LoadMetadataForReferencedProjects = value; } 137get => _loader.SkipUnrecognizedProjects; 138set => _loader.SkipUnrecognizedProjects = value; 146_loader.AssociateFileExtensionWithLanguage(projectFileExtension, language); 204var solutionInfo = await _loader.LoadSolutionInfoAsync(solutionFilePath, progress, msbuildLogger, cancellationToken).ConfigureAwait(false); 251var projects = await _loader.LoadProjectInfoAsync(projectFilePath, projectMap, progress, msbuildLogger, cancellationToken).ConfigureAwait(false);