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
))]
130
if (
_buildManager
!= null)
145
_buildManager
.StartBatchBuild(_globalMSBuildProperties);
168
if (
_buildManager
!= null)
169
throw new InvalidOperationException($"{nameof(
_buildManager
)} has already been initialized and cannot be changed");
204
var (project, log) = await
_buildManager
.LoadProjectAsync(projectFilePath, cancellationToken).ConfigureAwait(false);
226
var (project, log) =
_buildManager
.LoadProject(projectFilePath, stream);
232
Contract.ThrowIfNull(
_buildManager
);
238
_buildManager
,
249
return
_buildManager
.TryGetOutputFilePathAsync(projectFilePath, cancellationToken);
254
_buildManager
?.EndBatchBuild();