3 overrides of Build
Microsoft.Build (1)
Definition\Project.cs (1)
3349
public override bool
Build
(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<ForwardingLoggerRecord> remoteLoggers, EvaluationContext evaluationContext)
Microsoft.Build.Engine.OM.UnitTests (1)
ObjectModelRemoting\RemoteProjectsProviderMock\EvaluationLinkMocks\MockProjectLink.cs (1)
183
public override bool
Build
(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<ForwardingLoggerRecord> remoteLoggers, EvaluationContext evaluationContext)
Microsoft.Build.Engine.UnitTests (1)
InstanceFromRemote\FakeProjectLink.cs (1)
85
public override bool
Build
(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<ForwardingLoggerRecord> remoteLoggers, EvaluationContext evaluationContext) => throw new NotImplementedException();
2 references to Build
Microsoft.Build (2)
Definition\Project.cs (2)
1645
return implementation.
Build
(targets, loggers, remoteLoggers, evaluationContext);
3343
/// See <see cref="ProjectLink.
Build
"/>.