Beispiel #1
0
 public static ActionResult AddToMachineConfig(Session session)
 {
     session.Log("Begin AddToMachineConfig");
     try {
         InstallLib.addEntry(session.CustomActionData["ASSEMBLYNAME"]);
     } catch (Exception e) {
         session.Log("ERROR in AddToMachineConfig {0}", e.ToString());
         return(ActionResult.Failure);
     }
     return(ActionResult.Success);
 }
Beispiel #2
0
 override public void Install(IDictionary savedState)
 {
     base.Install(savedState);
     InstallLib.addEntry(typeof(FSharpCodeProvider).AssemblyQualifiedName);
 }