1 write to _buildManager
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
BuildHost.cs (1)
143_buildManager = new ProjectBuildManager(_globalMSBuildProperties, logger);
11 references to _buildManager
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (11)
BuildHost.cs (11)
27/// The global properties to use for all builds; should not be changed once the <see cref="_buildManager"/> is initialized. 32/// The binary log path to use for all builds; should not be changed once the <see cref="_buildManager"/> is initialized. 123[MemberNotNull(nameof(_buildManager))] 129if (_buildManager != null) 144_buildManager.StartBatchBuild(_globalMSBuildProperties); 167if (_buildManager != null) 168throw new InvalidOperationException($"{nameof(_buildManager)} has already been initialized and cannot be changed"); 209var projectFile = await projectLoader.LoadProjectFileAsync(projectFilePath, _buildManager, cancellationToken).ConfigureAwait(false); 229var projectFile = projectLoader.LoadProject(projectFilePath, projectContent, _buildManager); 238return _buildManager.TryGetOutputFilePathAsync(projectFilePath, cancellationToken); 243_buildManager?.EndBatchBuild();