Enterprise Architect Add-in Framework Documentation
MDG_BuildProject enables the Add-In to handle file changes caused by generation. This function is called in response to a user selecting the Add-Ins | Build Project menu option. Respond to this event by compiling the project source files into a running application. Also look at MDG_RunExe.

Namespace: EAAddinFramework
Assembly: EAAddinFramework (in EAAddinFramework.dll) Version: 1.0.4064.9398

Syntax

C#
public virtual void MDG_BuildProject(
	Repository Repository,
	string PackageGuid
)
Visual Basic
Public Overridable Sub MDG_BuildProject ( _
	Repository As Repository, _
	PackageGuid As String _
)
Visual C++
public:
virtual void MDG_BuildProject(
	Repository^ Repository, 
	String^ PackageGuid
)

Parameters

Repository
Type: Repository
An EA.Repository object representing the currently open Enterprise Architect model. Poll its members to retrieve model data and user interface status information.
PackageGuid
Type: System..::..String
The GUID identifying the Enterprise Architect package sub-tree that is controlled by the Add-In.

See Also