ProjectInstance.Build Method (array<String , IEnumerable<ILogger>, IDictionary<String, TargetResult>%)
Build a list of targets with specified loggers. Targets may be null. Loggers may be null.
MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.
Namespace: Microsoft.Build.Execution
Assembly: Microsoft.Build (in Microsoft.Build.dll)
Syntax
'Declaration
Public Function Build ( _
targets As String(), _
loggers As IEnumerable(Of ILogger), _
<OutAttribute> ByRef targetOutputs As IDictionary(Of String, TargetResult) _
) As Boolean
public bool Build(
string[] targets,
IEnumerable<ILogger> loggers,
out IDictionary<string, TargetResult> targetOutputs
)
public:
bool Build(
array<String^>^ targets,
IEnumerable<ILogger^>^ loggers,
[OutAttribute] IDictionary<String^, TargetResult^>^% targetOutputs
)
member Build :
targets:string[] *
loggers:IEnumerable<ILogger> *
targetOutputs:IDictionary<string, TargetResult> byref -> bool
public function Build(
targets : String[],
loggers : IEnumerable<ILogger>,
targetOutputs : IDictionary<String, TargetResult>
) : boolean
Parameters
targets
Type: array<System.String[]List of targets to build. May be null.
loggers
Type: IEnumerable<ILogger>Enumerated list of loggers to use for building targets.
targetOutputs
Type: IDictionary<String, TargetResult>%Outputs of target builds.
Return Value
Type: System.Boolean
Returns true on success, false on failure.
Remarks
If any of the loggers supplied are already attached to the logging service we were passed, throws InvalidOperationException.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.