BuildEngineResult Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The constructor takes the result of the build and a list of the target outputs per project
public:
BuildEngineResult(bool result, System::Collections::Generic::List<System::Collections::Generic::IDictionary<System::String ^, cli::array <Microsoft::Build::Framework::ITaskItem ^> ^> ^> ^ targetOutputsPerProject);
public BuildEngineResult (bool result, System.Collections.Generic.List<System.Collections.Generic.IDictionary<string,Microsoft.Build.Framework.ITaskItem[]>> targetOutputsPerProject);
new Microsoft.Build.Framework.BuildEngineResult : bool * System.Collections.Generic.List<System.Collections.Generic.IDictionary<string, Microsoft.Build.Framework.ITaskItem[]>> -> Microsoft.Build.Framework.BuildEngineResult
Public Sub New (result As Boolean, targetOutputsPerProject As List(Of IDictionary(Of String, ITaskItem())))
Parameters
- result
- Boolean
The result of the build.
- targetOutputsPerProject
- List<IDictionary<String,ITaskItem[]>>
The list of outputs per project.