This topic has not yet been rated - Rate this topic

OnBuildProjConfigBegin Event

Visual Studio .NET 2003

Occurs when a project configuration build begins.

[Visual Basic .NET]
Public Sub OnBuildProjConfigBegin( _
   ByVal Project As String, _
   ByVal ProjectConfig As String, _
   ByVal Platform As String, _
   ByVal SolutionConfig As String _
) 
[Visual Basic 6]
Sub OnBuildProjConfigBegin( _
   ByVal Project As String, _
   ByVal ProjectConfig As String, _
   ByVal Platform As String, _
   ByVal SolutionConfig As String _
) 
[C++]
HRESULT __stdcall OnBuildProjConfigBegin(
   BSTR Project,
   BSTR ProjectConfig,
   BSTR Platform,
   BSTR SolutionConfig
);
[C#]
public void OnBuildProjConfigBegin(
   string Project,
   string ProjectConfig,
   string Platform,
   string SolutionConfig
);
[JScript .NET]
public function OnBuildProjConfigBegin(
   Project : String,
   ProjectConfig : String,
   Platform : String,
   SolutionConfig : String
)

Parameters

Project
Required. The unique project build name that has begun.
ProjectConfig
Required. The name of the project configuration used.
Platform
Required. The name of the platform used.
SolutionConfig
Required. The name of the solution configuration used.

See Also

Applies To: BuildEvents Object

Did you find this helpful?
(1500 characters remaining)