次の方法で共有


ProjectBuildBeginEvent Constructors

Definition

Overloads

ProjectBuildBeginEvent(String)

Initializes a new instance of the ProjectBuildBeginEvent class.

ProjectBuildBeginEvent(String, String)

Initializes a new instance of the ProjectBuildBeginEvent class.

ProjectBuildBeginEvent(String)

Initializes a new instance of the ProjectBuildBeginEvent class.

public:
 ProjectBuildBeginEvent(System::String ^ projectFullPath);
public:
 ProjectBuildBeginEvent(Platform::String ^ projectFullPath);
 ProjectBuildBeginEvent(std::wstring const & projectFullPath);
public ProjectBuildBeginEvent (string projectFullPath);
new Microsoft.VisualStudio.Workspace.Build.ProjectBuildBeginEvent : string -> Microsoft.VisualStudio.Workspace.Build.ProjectBuildBeginEvent
Public Sub New (projectFullPath As String)

Parameters

projectFullPath
String

full path to the project file we are building

Applies to

ProjectBuildBeginEvent(String, String)

Initializes a new instance of the ProjectBuildBeginEvent class.

public:
 ProjectBuildBeginEvent(System::String ^ projectFullPath, System::String ^ buildConfiguration);
public:
 ProjectBuildBeginEvent(Platform::String ^ projectFullPath, Platform::String ^ buildConfiguration);
 ProjectBuildBeginEvent(std::wstring const & projectFullPath, std::wstring const & buildConfiguration);
public ProjectBuildBeginEvent (string projectFullPath, string buildConfiguration);
new Microsoft.VisualStudio.Workspace.Build.ProjectBuildBeginEvent : string * string -> Microsoft.VisualStudio.Workspace.Build.ProjectBuildBeginEvent
Public Sub New (projectFullPath As String, buildConfiguration As String)

Parameters

projectFullPath
String

full path to the project file we are building

buildConfiguration
String

The build configuration active for this project

Applies to