SolutionBuild2.PublishProject Method
Publishes a project.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
Sub PublishProject ( _
SolutionConfiguration As String, _
ProjectUniqueName As String, _
WaitForPublishToFinish As Boolean _
)
void PublishProject(
string SolutionConfiguration,
string ProjectUniqueName,
bool WaitForPublishToFinish
)
void PublishProject(
String^ SolutionConfiguration,
String^ ProjectUniqueName,
bool WaitForPublishToFinish
)
abstract PublishProject :
SolutionConfiguration:string *
ProjectUniqueName:string *
WaitForPublishToFinish:bool -> unit
function PublishProject(
SolutionConfiguration : String,
ProjectUniqueName : String,
WaitForPublishToFinish : boolean
)
Parameters
SolutionConfiguration
Type: System.StringThe solution configuration to publish.
ProjectUniqueName
Type: System.StringThe unique name of a project to publish.
WaitForPublishToFinish
Type: System.BooleanIf true, the call waits until publish has completed. If false, the call returns immediately.
Remarks
You can use the OnPublishBegin event to determine when a publish operation has started and the OnPublishDone event to determine when it has completed.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.