1 write to _buildManager
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
BuildHost.cs (1)
149
_buildManager
= new ProjectBuildManager(_knownCommandLineParserLanguages, _globalMSBuildProperties, logger);
14 references to _buildManager
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (14)
BuildHost.cs (14)
28
/// The global properties to use for all builds; should not be changed once the <see cref="
_buildManager
"/> is initialized.
33
/// Should not be changed once the <see cref="
_buildManager
"/> is initialized.
38
/// The binary log path to use for all builds; should not be changed once the <see cref="
_buildManager
"/> is initialized.
129
[MemberNotNull(nameof(
_buildManager
))]
135
if (
_buildManager
!= null)
150
_buildManager
.StartBatchBuild(_globalMSBuildProperties);
173
if (
_buildManager
!= null)
174
throw new InvalidOperationException($"{nameof(
_buildManager
)} has already been initialized and cannot be changed");
210
var (project, log) = await
_buildManager
.LoadProjectAsync(projectFilePath, cancellationToken).ConfigureAwait(false);
232
var (project, log) =
_buildManager
.LoadProject(projectFilePath, stream);
238
Contract.ThrowIfNull(
_buildManager
);
239
return _server.AddTarget(new ProjectFile(languageName, project,
_buildManager
, log));
247
return
_buildManager
.TryGetOutputFilePathAsync(projectFilePath, cancellationToken);
252
_buildManager
?.EndBatchBuild();