1 write to _buildManager
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
BuildHost.cs (1)
144_buildManager = new ProjectBuildManager(_globalMSBuildProperties, logger);
13 references to _buildManager
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (13)
BuildHost.cs (13)
28/// The global properties to use for all builds; should not be changed once the <see cref="_buildManager"/> is initialized. 33/// The binary log path to use for all builds; should not be changed once the <see cref="_buildManager"/> is initialized. 124[MemberNotNull(nameof(_buildManager))] 130if (_buildManager != null) 145_buildManager.StartBatchBuild(_globalMSBuildProperties); 168if (_buildManager != null) 169throw new InvalidOperationException($"{nameof(_buildManager)} has already been initialized and cannot be changed"); 204var (project, log) = await _buildManager.LoadProjectAsync(projectFilePath, cancellationToken).ConfigureAwait(false); 226var (project, log) = _buildManager.LoadProject(projectFilePath, stream); 232Contract.ThrowIfNull(_buildManager); 238_buildManager, 249return _buildManager.TryGetOutputFilePathAsync(projectFilePath, cancellationToken); 254_buildManager?.EndBatchBuild();