Can We have multiple dll entry as below example :
I have one Binary entry :
<Binary Id="SqlBrowse" SourceFile="..\SqlBrowse\bin\Debug\SqlBrowse.CA.dll"/>
Calling custom action
<CustomAction Id="SqlBrowseValidate" BinaryKey="SqlBrowse"
DllEntry="SqlValidate" Execute="immediate" Return="asyncWait">
</CustomAction>
<CustomAction Id="SqlBrowseID" BinaryKey="SqlBrowse"
DllEntry="CustomAction1" Execute="immediate">
</CustomAction>
I have two CA as :
public static ActionResult CustomAction1(Session xiSession)
{}
public static ActionResult SqlValidate(Session sqlSession)
{}