1 write to _buildManager
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
AbstractBuildHost.cs (1)
96
_buildManager
= new ProjectBuildManager(_knownCommandLineParserLanguages, _globalMSBuildProperties, logger);
14 references to _buildManager
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (14)
AbstractBuildHost.cs (14)
29
/// The global properties to use for all builds; should not be changed once the <see cref="
_buildManager
"/> is initialized.
34
/// Should not be changed once the <see cref="
_buildManager
"/> is initialized.
39
/// The binary log path to use for all builds; should not be changed once the <see cref="
_buildManager
"/> is initialized.
76
[MemberNotNull(nameof(
_buildManager
))]
82
if (
_buildManager
!= null)
97
_buildManager
.StartBatchBuild(_globalMSBuildProperties);
120
if (
_buildManager
!= null)
121
throw new InvalidOperationException($"{nameof(
_buildManager
)} has already been initialized and cannot be changed");
157
var (project, log) = await
_buildManager
.LoadProjectAsync(projectFilePath, cancellationToken).ConfigureAwait(false);
179
var (project, log) =
_buildManager
.LoadProject(projectFilePath, stream);
185
Contract.ThrowIfNull(
_buildManager
);
186
return _server.AddTarget(new ProjectFile(languageName, project,
_buildManager
, log));
194
return
_buildManager
.TryGetOutputFilePathAsync(projectFilePath, cancellationToken);
199
_buildManager
?.EndBatchBuild();