20 lines
420 B
C#
20 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.Deployment.WindowsInstaller;
|
|
|
|
namespace PdfScribeInstallCustomAction
|
|
{
|
|
public class CustomActions
|
|
{
|
|
[CustomAction]
|
|
public static ActionResult CustomAction1(Session session)
|
|
{
|
|
session.Log("Begin CustomAction1");
|
|
|
|
return ActionResult.Success;
|
|
}
|
|
}
|
|
}
|