예제 #1
0
 /// <summary>
 /// Initializes project configurations for module. At this time the module must load all needed configurations.
 /// </summary>
 /// <param name="installHelper">The install helper.</param>
 /// <remarks>
 /// This method is called when a project is re-/loaded.
 /// </remarks>
 public void InitializeProjectConfig(Development.SDK.Module.Controller.Helper.InstallHelper installHelper)
 {
 }
예제 #2
0
 /// <summary>
 /// Imports an external package.
 /// </summary>
 /// <param name="package">The package to import.</param>
 /// <returns><c>true</c> if the package was imported, otherwise <c>false</c>.</returns>
 public bool ImportExternalPackage(Development.SDK.Module.Controller.Helper.InstallHelper installHelper, object package)
 {
     return(true);
 }
예제 #3
0
 /// <summary>
 /// This method is called once on designer application startup and once every time modules where uploaded to the service.
 /// </summary>
 /// <param name="isServiceCall"><c>true</c> if the service calles this function, otherwise (the Designer calles it) <c>false</c>.</param>
 /// <remarks>You need to check, if you already have installed your components you want to install here.</remarks>
 public void InstallNeededPackages(Development.SDK.Module.Controller.Helper.InstallHelper installHelper)
 {
 }