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
))]
129
if (
_buildManager
!= null)
144
_buildManager
.StartBatchBuild(_globalMSBuildProperties);
167
if (
_buildManager
!= null)
168
throw new InvalidOperationException($"{nameof(
_buildManager
)} has already been initialized and cannot be changed");
209
var projectFile = await projectLoader.LoadProjectFileAsync(projectFilePath,
_buildManager
, cancellationToken).ConfigureAwait(false);
229
var projectFile = projectLoader.LoadProject(projectFilePath, projectContent,
_buildManager
);
238
return
_buildManager
.TryGetOutputFilePathAsync(projectFilePath, cancellationToken);
243
_buildManager
?.EndBatchBuild();