VsTeXProject.VisualStudio.Project.ProjectNode.BuildAsync C# (CSharp) Method

BuildAsync() private method

private BuildAsync ( uint vsopts, string config, IVsOutputWindowPane output, string target, string>.Action uiThreadCallback ) : void
vsopts uint
config string
output IVsOutputWindowPane
target string
uiThreadCallback string>.Action
return void
        internal virtual void BuildAsync(uint vsopts, string config, IVsOutputWindowPane output, string target,
            Action<MSBuildResult, string> uiThreadCallback)
        {
            BuildPrelude(output);
            SetBuildConfigurationProperties(config);
            DoMSBuildSubmission(BuildKind.Async, target, uiThreadCallback);
        }
ProjectNode