Microsoft.VisualStudio.Project.Output.Output C# (CSharp) Method

Output() public method

Constructor for IVSOutput2 implementation
public Output ( ProjectNode projectManager, Microsoft.Build.Execution.ProjectItemInstance outputAssembly ) : System
projectManager ProjectNode Project that produce this output
outputAssembly Microsoft.Build.Execution.ProjectItemInstance MSBuild generated item corresponding to the output assembly (by default, these would be of type MainAssembly
return System
        public Output(ProjectNode projectManager, ProjectItemInstance outputAssembly)
        {
            if(projectManager == null)
                throw new ArgumentNullException("projectManager");
            if(outputAssembly == null)
                throw new ArgumentNullException("outputAssembly");

            project = projectManager;
            output = outputAssembly;
        }